jQuery(document).ready(function(){
/* jQuery(".video_carousel li img").css( 'opacity', '0.7'); */
	
	jQuery(".video_carousel li").hover(function(){
				jQuery(this).find('img').css("z-index", "99");
				jQuery(this).find('img').animate({ width: "110%", height: "110%", left: "-5px", top: "-5px"}, 500);
			}, function(){
			jQuery(this).find('img').css("z-index", "97");
				jQuery(this).find('img').animate({ width: "229px", height: "160px", left: "0px", top: "0px"}, 500);
			});
});
