
$(document).ready(function(){
	
	//--- Link target _blank ---------------------------------------------------------------------
	$('a').each(function(i,a){
		if($(a).attr('rel')=='blank')
			$(a).attr('target','_blank');				 
	});
	
	
	//--- Link target _blank ---------------------------------------------------------------------
	$('#youtube a').mouseenter(function(){
		$(this).find('.img').fadeTo(200,0.7);
	}).mouseleave(function(){
		$(this).find('.img').fadeTo(200,1);
	});
	
	
	
});


