j$(document).ready(function() {
	j$("#contactForm h4").hover(function(){
		j$(this).css("cursor","pointer"); 
	},function(){
		j$(this).css("cursor","default"); 
		});
	j$("#contactForm form").css("display","none");
	j$("#contactForm h4").click(function(){
		j$(this).next().slideToggle("fast");
		});
});
