$j = jQuery.noConflict();
jQuery(document).ready(function () {
	//Fade
    $j("#tudo").animate({opacity:'1'},500);
 
    $j("a.transition").click(function(event){
        event.preventDefault();
        linkLocation = this.href;
        $j("#tudo").fadeOut(1000, redirectPage);
    });
	//Redireciona 
    function redirectPage() {
        window.location = linkLocation;
    }
});
