// Start jQuery

$(document).ready(function() {
	
	// contact show + hide
	
	$('#contact').hide();	
	$('#nav-contact').click(function(){
		$('#contact').fadeIn('fast');
		return false;
	});
	$('#close').click(function(){
		$('#contact').fadeOut('fast');
		return false;
	});

}); // End jQuery