$(function(){

	$('.playlist_video').click(function(){
	
		window.location.href='?vid='+$(this).attr('id');
	
	}).hover(function(){
		
		$(this).find("img").fadeTo(300,1);
		
	},function(){
		
		if($(this).attr('type')=="off") $(this).find("img").fadeTo(300,0.5);
		
	}).each(function(){
		
		if($(this).attr('type')=="off") $(this).find("img").fadeTo(0,0.5);
		
	});

});