// previously placed in body  vinit pratap singh 19 march, 2010
$(document).ready(function(){
$("#ContactPanel").slideToggle(5);
	// 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;
	});
});



