$(function() {
		   $("#send_test").click(function() {
		      var return_form = false;
			  var name = $("#txt_name").attr("value");
			  var city = $("#txt_city").attr("value");
			  var state = $("#txt_state").attr("value");
			  var msg = $("#txt_msg").attr("value");
				
			  if (name.length == 0 || msg.length == 0) {   			    
			  	$("#return_msg").html("<font style='font:10px Arial, Helvetica, sans-serif; color:#FF0000;'>Nome e mensagem sao obrigatorios.</font>");
			  }
			  else 
			  	  return_form = true;

			  return return_form;
		   });
})

function changeStatus(url){
    $(document).ready(function(){
        $(".loading").hide();
        $('.status').bind("click",function() {   
            $(this).hide();     
            $(this).prev().show();
            $(this).load(url, {id: $(this).attr("id") }, function() {
                $(this).show();
                $(this).prev().hide();
            })
        })
    })
}
