/* 
styles
author: Marcel Moreau for Bridgeline Software: http://bridgelinesw.com

Contents
- INPUT CLEAR



/*  INPUT CLEAR
------------------------------------*/
function clearText(thefield){
	if (thefield.defaultValue==thefield.value)
	thefield.value = "";
} 
function resetText(thefield){
	if (thefield.value=="")
	thefield.value = thefield.defaultValue;
}


/*  Activating the Toggle 
------------------------------------*/
$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".toggle_container").hide(); 

	//Switch the "Open" and "Close" state per click
	$("h3.trigger").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$("h3.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow");
	});

});

/*  LAST FOOTER PIPE
------------------------------------*/
$(document).ready(function() {
	$(".navFooter li:last").css({"background" : "none"});
});