//jQuery Stuff - - - - - - - - - - - - - - - - - - - - - - - - - - - -

// custom show-hide script in jQuery

$(document).ready(function() {
	// hides stuff with the class of 'Hide' as soon as the DOM is ready
	$('.Hide').hide();
	
	// add the class to make the headings look like links
	$('.Toggle').addClass('MakeLink');
	
	// toggles the Hidden content upon clicking the link 
	$('.Toggle').click(function() {
    	$(this).next().slideToggle('normal');
	});
});
