if(!($.browser.msie) || ($.browser.msie && $.browser.version == 9))
	(function(){
		$('.box.first')
		.live('mouseenter',function(){
			$(this).stop(false,true)
			.animate({ width:206, height:377, top:-10, left:0},250);
		})
		.live('mouseleave',function(){
			$(this).stop(false,true)
			.animate({ width:176, height:357, top:0, left:21 },250);
		});
		
		$('.box.second')
		.live('mouseenter',function(){
			$(this).stop(false,true)
			.animate({ width:206, height:377, top:-10, left:180},250);
		})
		.live('mouseleave',function(){
			$(this).stop(false,true)
			.animate({ width:176, height:357, top:0, left:201 },250);
		});
		
		$('.box.third')
		.live('mouseenter',function(){
			$(this).stop(false,true)
			.animate({ width:206, height:377, top:-10, left:360},250);
		})
		.live('mouseleave',function(){
			$(this).stop(false,true)
			.animate({ width:176, height:357, top:0, left:381 },250);
		});
		
		$('.box.fourth')
		.live('mouseenter',function(){
			$(this).stop(false,true)
			.animate({ width:206, height:377, top:-10, left:540},250);
		})
		.live('mouseleave',function(){
			$(this).stop(false,true)
			.animate({ width:176, height:357, top:0, left:561 },250);
		});
		
		$('.box.fifth')
		.live('mouseenter',function(){
			$(this).stop(false,true)
			.animate({ width:206, height:377, top:-10, left:720},250);
		})
		.live('mouseleave',function(){
			$(this).stop(false,true)
			.animate({ width:176, height:357, top:0, left:741 },250);
		});
		
})()
