if(!($.browser.msie) || ($.browser.msie && $.browser.version == 9))
	(function(){
		$('.box-1')
		.live('mouseenter',function(){
			$(this).stop()
			.animate({ width:219, height:281, left:-10, top:-10 },'250');
		})
		.live('mouseleave',function(){
			$(this).stop()
			.animate({ width:199, height:261, left:0, top:0 },'250');
		});	
		
		$('.box-2')
		.live('mouseenter',function(){
			$(this).stop()
			.animate({ width:219, height:281, left:239, top:-10 },'250');
		})
		.live('mouseleave',function(){
			$(this).stop()
			.animate({ width:199, height:261, left:249, top:0 },'250');
		});	
		
		$('.box-3')
		.live('mouseenter',function(){
			$(this).stop()
			.animate({ width:219, height:281, left:488, top:-10 },'250');
		})
		.live('mouseleave',function(){
			$(this).stop()
			.animate({ width:199, height:261, left:498, top:0 },'250');
		});	
		
		$('.box-4')
		.live('mouseenter',function(){
			$(this).stop()
			.animate({ width:219, height:281, left:737, top:-10 },'250');
		})
		.live('mouseleave',function(){
			$(this).stop()
			.animate({ width:199, height:261, left:747, top:0 },'250');
		});	
		
})()
