$(document).ready(function() {
	$('.nav li:last-child a, div .iten:last-child, .nav ul li:last-child').addClass('last');

	
	$('.search .txt').click(function(){
	  if(this.value == 'pesquisar...') this.value = '';	
	});

	$('.newsadd .txt').click(function(){
	  if(this.value == 'e-mail...') this.value = '';	
	});

	$('.nav li').hover(
		function(){
			$(this).children('ul').show(0);
		},
		function(){
			$(this).children('ul').hide(0);
		}
	);
	
});