//jQuery Stuff - - - - - - - - - - - - - - - - - - - - - - - - - - - -
jQuery.noConflict(); //this and the next line keep jQuery from messing with prototype
jQuery(document).ready(function($) {
	
	// Show and Hide
	$('.Hide').hide(); // hide anything with the class of .Hide
	$('.Toggle').addClass('MakeLink'); // add the class to make the headings look like links
	$('.Toggle').click(function() { // toggles the Hidden content upon clicking the link 
    	$(this).next().slideToggle('normal');
	});
	
	// Hide Javascript and Flash Indicators
	$('.Indicator').hide();
	
	// Add Print Link to the Page Nav  ((write this in jquery, see the stuff above))
	
});
