$(function(){
	$('#products').load(function(){
		var $iframe = $(this);
		
		$('.loading').fadeOut('fast',function(){ 
			$(this).remove();

			var windowH = $(window).height();
			var headerH = $('#header').height();
			var contentH = windowH-headerH;		
		
			$('#content').height(contentH);
			$iframe.show();
		});
	});
	$('#mail').click(function(){
		$('#products').attr('src','http://www.florencemailboxes.com/distributors/products/index.php?email=info@centrallockandsafe.com');
		return false;
	});
});