$(document).ready(function(){
	//Hide (Collapse) the toggle containers on load
	$(".toggle_container").hide(); 
	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$("h3.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});
});

function focusInput(theId,theContent) { if (theId.value == theContent) { theId.value = ''; theId.style.color = '#000000'; } }
function blurInput(theId,theContent) { if (theId.value == '') { theId.value = theContent; theId.style.color = '#999999'; } }
