$(document).ready(function() {

	$("#middleCol h2 .email").click(function () { 
		$('.emailPopup .input').show();
		$('.emailPopup .sent').hide();
		$('.emailPopup').animate( { "opacity": "toggle" }, 150);
	});
	$(".links .email").click(function () { 
		$('.emailPopup .input').show();
		$('.emailPopup .sent').hide();
		$('.emailPopup').animate( { "opacity": "toggle" }, 150);
		return false;
	});
	$(".links .fax").click(function () { 
		$('.faxPopup .input').show();
		$('.faxPopup .sent').hide();
		$('.faxPopup').animate( { "opacity": "toggle" }, 150);
		return false;
	});
	
	
	$(".emailPopup .submit").click(function () { 
		$('.emailPopup .input').toggle();
		$('.emailPopup .sent').animate( { "opacity": "toggle" }, 600);
	});
	
	$(".emailPopup .close, .emailPopup .cancel").click(function () { 
		$('.emailPopup').animate( { "opacity": "toggle" }, 150);
	});
	
	$(".faxPopup .close, .faxPopup .cancel").click(function () { 
		$('.faxPopup').animate( { "opacity": "toggle" }, 150);
	});


});

