function onoff(obj,mode){

		if (mode == 'on'){
			obj.src="images/"+obj.id+"on.png"
		}else if (mode == 'off'){
				obj.src="images/"+obj.id+"off.png"			
		}
		
}

function load_portifolio(value){
	
		Element.update('divportifolio','Carregando...');	
		new Ajax.Request('ajax/ajax_portifolio.php', {
        	parameters:'p='+value,
			method:'post',
			onComplete:function( txt, vars ) {
				Element.update('divportifolio', txt.responseText);
			}
		});
		return false;	
		
}

function valida(form){

     if(form.nome.value==''){
        alert('Informe o Nome');
        return false;  
     }
     if(form.email.value==''){
        alert('Informe o E-mail');
        return false;  
     }
     if(form.categoria.value=='-1'){
        alert('Informe a Categoria');
        return false;  
     }
     if(form.msg.value==''){
        alert('Informe uma Mensagem');
        return false;  
     }

    return true;  

}
