var t;
$(document).ready(function () {
	$(".block img").hover(
		function() {
			$(this).animate({ 
        width: "230px",
        height: "230px",
        margin: "8px"
      }, 100 );
		}, 
		function() {
			$(this).animate({ 
        width: "246px",
        height: "246px",
        margin: "0px"
      }, 100 );
		} 
	);
	t = setTimeout("doPop()", 2000) ;
	$("#pop").click(function() {
		clearTimeout(t);
		doPop();
	});
});
function doPop() {
	$("#pop").animate({height: "246px",top:"147px"}, 3000, function() {
		$("#pop").fadeOut(3000);
	});
	$("#pop img").animate({marginTop: "-147px"}, 3000);
	$("#site").show();
}
