$(function(){

/* ----------------------------------------------------
	Ątarget="_blank"
---------------------------------------------------- */
$('a').each(
	function(){
		if($(this).attr('href') && $(this).attr('rel') == 'external'){
			$(this).attr('target', '_blank');
		}
	}
);


/* End */
});
