var count = 0;

function resizeIframe(){
	if (count){		
		$("iframe").animate(
				{width: "800", height: "1200"},
				{duration: "slow"}
		);
		$("div.info").slideUp("slow");
	}
	else{
		$("iframe")
		.width(600)
		.height(700);
	}
	count++;
}
$(document).ready(function(){
	$("iframe").attr("src", "http://ibe01.merlinx.pl/agent/4075/btz1/");
})

