$(function(){
	$('#contact').hide();
	$('#showForm').click(function(){
		$('#contact').fadeIn();
		return false;
	});
	$('#contact').validate();
});
