// Shore Consulting Group - Shore projects
//
// Site Javascript


$(document).ready(function(){
	// add new page form
	$("a.showHide").click(function(event){
		event.preventDefault()
		$(this).blur();
		if($(this).next("fieldset.showHide").hasClass("hidden")){
			$(this).toggleClass("showing");
			$(this).next("fieldset.showHide").toggleClass("hidden");
			$(this).next("fieldset.showHide").css("display","block");
		} else {
			$(this).toggleClass("showing");
			$(this).next("fieldset.showHide").toggleClass("hidden");
			$(this).next("fieldset.showHide").css("display","");
		}
	})
});

