$(document).ready(function () {
	$('img.panoic').hover(
		function(){$(this).animate({width:'150px',height:'60px',left:'-20px',top:'0px'}, 300);},
		function(){$(this).animate({width:'180px',height:'72px',left:'0px',top:'-12px'}, 200);}
	);
	$('.pano').wrap('<div class="panorm"><div class="panofr"></div></div>');	
});