// JavaScript Document

$(document).ready(function() {
					
	$(".page-division h2 span").click(function() {
		$(this).parent().next(".division").slideToggle("slow"); //will slide toggle the div up and down when showhide is clicked
		$(this).toggleClass("active"); //everytime the show hide image is clicked, toggle a new image
		return false;
	});
});

//$(document).ready(function() { //insert html code for wrapper footer .png file to bottom of every page
	//$("#wrapper").append("<div class='footwrap'>testing the insert</div><div class='footright'>rightfoothere</div>");
//});

//$(document).ready(function() { //insert html code for wrapper footer .png file to bottom of every page
	//$("#content").append("<div class='footedge'>&nbsp;</div>");
//});
