﻿jQuery.noConflict();

jQuery(document).ready(function() {
	if (jQuery('.slideout').length > 0) {
		doSlideouts();
	}
});

function doSlideouts() {
	jQuery('.slideout h2 a').click(function(e) {
		e.preventDefault();
		jQuery(this).parent().siblings('ul').slideToggle();
	});
}
