$(document).ready(function(){
	$('#topo div').hover(function(){
		$(this).css({top:'0px'}, 1000);
	}, function(){
		$(this).css({top:'-39px'}, 1000);
	});
	$('#interna #sobre img').each(function(){
		$lar = 880 - 250;
		$('.desc, .desc_bloco').css({'width':$lar+'px','height':$(this).height()+'px'});
	});
	$('#interna .formulario .text').focus(function(){
		$(this).addClass('hover');
	}).blur(function(){
		$(this).removeClass('hover');
	});
	$('#topo li a').each(function(){
		$width = parseFloat($(this).width()) + 20;
		$(this).find('img:eq(0)').attr('width', $width).css({'width':$width+'px'});
	});
});
