
$(function(){
	$('.videoList').faiSc().find('p').hover(function(){ 
		$(this).parent().css({'z-index':10}).end().css({'padding':'3px','background-color':'#fff'})
			.stop(true).animate({left:'-15px',width:'215px',height:'135px'},{duration:800,easing:'easeOutExpo'})
			.find('img').stop(true).animate({width:'215px',height:'135px'},{duration:800,easing:'easeOutExpo'}).end()
			.find('em').stop(true).fadeTo(400,0.7);
	},function(){
		$(this).parent().css({'z-index':9}).end().css({'padding':'2px','background-color':'#d3d3d3'})
			.stop(true).animate({left:0,width:'185px',height:'116px'})
			.find('img').stop(true).animate({width:'185px',height:'116px'}).end()
			.find('em').stop(true).fadeOut();
	});
});
