// Initial function that calls another functions
function pageLoader() {
 externalLinks(); // External links get a "target=_blank"
}

// Links pointing to "outside" get a "target=_blank"
function externalLinks(){
 $("a[href^=http://]:not([href^="+location.protocol+"//"+location.hostname+"])").addClass("external");
 $("a.external, form.external").attr("target","_blank");
}

// Making class "olho de texto"
$(document).ready(function(){
	$(".article h2 + p").addClass("olhotexto");
});

// Calling a initial function that calls other functions...
$(document.ready=function(){pageLoader();});

