$(document).ready(function(){
	
	$("body").click(function(event) {
		$("#contacto").fadeOut("fast");
	});
	$(".contact-show, #contacto").click(function(event){
		event.stopPropagation();
	});

	
	$("#contact-hide").click(function(event){
		event.preventDefault();
		$("#contacto").fadeOut("fast");
	});
	$(".contact-show").click(function(event){
		event.preventDefault();
		$("#contacto").fadeIn("slow");
	});
});
