$(document).ready(function(){

	// Toggle and hide the ContactPanel
	$("#toggleContactPanel").click(function() {
		$("#ContactPanel").slideToggle(500);
		$(this).toggleClass("active");
		return false;
	});
	// Close the ContactPanel - Used if action added within the hidden panel itself, otherwise omit	
 	$("#hideContactPanel").click(function() {
 		$("#ContactPanel").slideUp(500);
		$("#contactMe h3 a").removeClass("active");
 	return false;
	});
});

function buttonToggle(){
            if (document.buttonform.button.value == "Click to expand"){
                document.buttonform.button.value = "Click to collapse";}
            else{document.buttonform.button.value = "Click to expand";}
            }

