$(document).ready(function(){
	//Login
	$("#inputLogin,#inputSenha").focus(function(){
		if($(this).val() == "Login" || $(this).val() == "Senha"){
			$(this).val("");
		}
	});
	$("#inputLogin").blur(function(){
		if($(this).val() == ""){
			$(this).val("Login");
		}
	});
	$("#inputSenha").blur(function(){
		if($(this).val() == ""){
			$(this).val("Senha");
		}
	});
	
	//ativaBorda
	$(".imgBorda").hover(function(){
		$(this).stop().animate({borderColor:"#FCCD01"},"slow");	
	},function(){
		$(this).stop().animate({borderColor:"#FFF"},"normal");	
	});

	//menuSub
	if(!$.browser.msie){
	$(".menu ul li").hover(function(){
		$(this).find("#subMenu").css("display","block");
		$(this).find("#subMenu").css("opacity","0");
		$(this).find("#subMenu").css("width","0px");
		$(this).find("#subMenu").css("height","0px");
		$(this).find("#subMenu").stop().animate({
			opacity:1,
			width:"165px",
			height:"129px"	
		});	
	}, function(){
		$(this).find("#subMenu").stop().animate({
			width:"0px",
			height:"0px",
			opacity:0	
		},900);
	});
	} else {
		$(".menu ul li").hover(function(){
			$(this).find("#subMenu").css("display","block");	
		}, function(){
			$(this).find("#subMenu").css("display","none");
		});	
	}
			
});


