
//toggle	
	$(function() {
			   $('#toggle').click(function(){
					$('#contact').toggle();
				});
	});
