$(document).ready(function(){
$("").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;
});
});
