$(document).ready(
function(){    
	$('a').click(function(){        
	var fullUrl = $(this).attr('href'); 
	var internal = true;
	if (fullUrl.substring(0, 7) === 'http://') { //7 = 'http://'.length 
		fullUrl = fullUrl.substring(7);
		internal = false;
	}	
	if (fullUrl.substring(0, 4) === 'www.') { //4 = 'www.'.length 
		fullUrl = fullUrl.substring(4);
		internal = false;
	}
	if (!internal) {
		if (fullUrl.indexOf('genocid.net') == -1){
			$(this).attr("target","_blank");        
		}
    }	
});});

