$(document).ready(function(){
  
	$("#nav a").blend();
	
        var ua = $.browser;//testando navegador

        if ( ua.msie && ua.version.slice(0,1) == "7" ) {
            $('html').addClass('ie7');
        }else{
        	
        	
        	
        	
        }
        if(!ua.msie && !ua.version.slice(0,1) == "7"){
        	
        	$('a').hover(function(){ // se deixar dentro deste teste if, a animaç~cao dos tooltips fica lenta
    	//alert(1);
		    	$(this).stop().animate({'opacity':'0.7'},500);
		    },function(){
		    	$(this).stop().animate({'opacity':'1'},500);
		    });
        	
        }
		

	var tamanho = $('#header').css('width')

	tamanho = parseInt(tamanho.replace(/px/, ""))

	var margim = (tamanho - 2000) / (2);

	$('#header .topo, #header .menu, #news .conteudo').css('margin-left',margim)

        $(window).resize(function(){
	var tamanho = $('#header').css('width')

	tamanho = parseInt(tamanho.replace(/px/, ""))

	var margim = (tamanho - 2000) / (2);

	$('#header .topo, #header .menu, #news .conteudo').css('margin-left',margim)


})

})
