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