$(document).ready(function(){
	$(".paginador ul li:last").css({display: 'none'});
	
	$(".menuInt ul li.abre_submenu").mouseout(function(){
		$(this).children(".subMneuInt").hide();
		return false;
	}).mouseover(function(){
		$(this).children(".subMneuInt").show();
		return false;
	});
	
	$('.subMneuInt').hover(function(){
		$(this).next("a").toggleClass("hover");
	}, function() {
		$(this).next("a").toggleClass("hover");
		$(this).hide();
	});
	
	$(".limpa").focus(function() {
	if( this.value == this.defaultValue ) {
			this.value = "";
		}
		}).blur(function() {
	if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
});
