	
	$(document).ready(function () {
		$('.tumb_2_1 a').mouseover(function() {
			$(this).children('.play_btn_small').css({display:"block"});
			$(this).children('.img').css({width:"230px",height:"180px", position:"absolute", left:"-15px", top:"-15px"});
			$(this).children('.player_tumb').css({width:"230px",height:"8px", position:"absolute", left:"-13px", top:"165px"});
		});
		$('.tumb_2_1 a').mouseout(function() {
			$('.tumb_2_1 .play_btn_small').css({display:"none"});
			$('.tumb_2_1 .img').css({width:"200px",height:"150px", position:"relative", float:"left", left:"0px", top:"0px"});
			$('.tumb_2_1 .player_tumb').css({width:"204px",height:"6px", position:"relative", float:"left", left:"0px", top:"0px"});
		});
	}); 
