$(function(){

//	$('#menu_superior a b')
	$('#menu_superior a')

		.css( {marginLeft: "0", color: "#fff"} )

		.mouseover(function(){

			$(this).find('b').stop().animate({marginLeft: "10px", color: "#90b6dd"}, {duration:400});

		})

		.mouseout(function(){

			$(this).find('b').stop().animate({marginLeft: "0", color: "#fff"}, {duration:400});

		})

	$('#box_colesq a')

		.css( {backgroundPosition: "0px 10px"} )

		.mouseover(function(){

			$(this).stop().animate({backgroundPosition: "(5px 10px)"}, {duration:400});

		})

		.mouseout(function(){

			$(this).stop().animate({backgroundPosition: "(0px 10px)"}, {duration:400});

		})

	$('a.lightbox').lightBox();

});



function surgir (objeto, msg) {

		if (objeto.value == '')objeto.value = msg;

}



function limpar (objeto, msg) {

		if (objeto.value == msg)objeto.value = '';

}

	

function mostrar (objeto, msg) {

		if (objeto.value == '')objeto.value = msg;

}

function verifica(){

      

		var nome,email,mensagem;

	  

		nome = document.form.nome.value;

		email= document.form.email.value;

		mensagem = document.form.msg.value;

		if ( nome == "Digite seu nome" ){

		alert("Digite o seu nome.") ;

		document.form.nome.focus();

		document.form.nome.style.background = '#F0F0F0';

		return false ;

	    }     



		if ( email == "Digite seu e-mail" ){

		alert("Digite o seu e-mail.") ;

		document.form.email.focus();

		document.form.email.style.background = '#F0F0F0';

		return false ;

	    }



		if ( mensagem == "Digite sua mensagem." ){

		alert("Digite a mensagem.") ;

		document.form.msg.focus();

		document.form.msg.style.background = '#F0F0F0';

		return false ;

	    }     



		return true;

}


