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

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