/* FOCUS EN BLUR EVENTS */

$(document).ready(function(){
				   
	$("a").each(function(){
		
		if ( $(this).attr('rel') == 'external' )
		{
			$(this).attr('target', '_blank');
		}
		
	});
				   
});
