
/*************************************************************************************************/

/*colocar rodape no final da pagina*/
	var altura ="";  

    altura = document.getElementById('divCentro').offsetTop * 2;

    if (window.innerHeight) {
		altura = altura - 30;
    } else if (window.document.body.clientHeight) {
		altura = altura - 30;
    }

    alturaConteudo = document.getElementById('conteudo').style.height;

    alturaConteudo = alturaConteudo.replace(/[px]/gi, "");

    if (altura > alturaConteudo)
        document.getElementById('conteudo').style.height = altura + 'px';   
   
/*************************************************************************************************/

$(document).ready(function() {
	
	$("body").css("display", "none");

    $("body").fadeIn(600);
    
	$("a.transition").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("body").fadeOut(1000, redirectPage);		
	});
		
	function redirectPage() {		
		window.location = linkLocation;
	}
	/*
	//Append a div with hover class to all the LI
	$('#menu li').append('<div class="hover"><\/div>');
	$('#menu li').hover(
	
	//Mouseover, fadeIn the hidden hover class	
	function() {		
		$(this).children('div').fadeIn('1000');	
	}, 
	
	//Mouseout, fadeOut the hover class
	function() {
		$(this).children('div').fadeOut('0');	
	}).click (function () {
		//Add selected class if user clicked on it
		$(this).addClass('selected');
	});

	*/
});


