
// sliding menu
$(document).ready(function() {

	// if there is not a querystring on the URL, collapse the contact form (form submission adds a querystring)
	var querystring = decodeURI(location.search);
	if (!querystring) {		   
		$("div#contact").hide();
	}
	
	// toggle	
	$("h6#toggle").click(function()
	{
		$(this).toggleClass('opened').next("div#contact").slideToggle("fast").siblings("div#contact").slideUp("fast");	
		$('div#contact').removeClass('open');
	});
});

