$(document).ready(function(){
    $("a").each(function(){
		var href = $(this).attr("href");
		
		if ( href != null )
		{
			if ( href.indexOf( "http://" ) != -1 )
			{
				if ( href.indexOf( "http://www.technocompetences.qc.ca" ) == -1 )
				{
					$(this).attr("target", "_blank");
				}
			}
		}
	}
	);
});
