$(document).ready(function(){
	$("#menu-center ul li:last-child").addClass("last");
/*
   $("#cadastronews .txt").focus(function(){

        if ( $(this).val() == "Seu nome"){
            $(this).val("");
        } else if ( $(this).val() == "Seu email"){
           $(this).val("");
        }
        //$("#debug").html($(this).val(""));
        $(this).css("border", "1px solid #073E6F");
        $(this).css("color", "#333");
        $(this).css("font-style", "normal");

    });
    $("#cadastronews .txt").blur(function(){
       if ($(this).val() == ""){
           if ( $(this).attr("name") == "nome" ){
               $(this).val("Seu nome");
           }else{
               $(this).val("Seu email");
           }
           $(this).css("color", "#ccc");
           $(this).css("font-style", "italic");
       }
       $(this).css("border", "1px solid #ccc");
    });
*/
});


