$(function(){
	/* LIMPA INPUT */
	$("input, textarea").focus(function() {
	if( this.value == this.defaultValue ) {
			this.value = "";
		}
		}).blur(function() {
	if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
//	var num = Math.round(Math.random()*2)
//	if(num==0){
		   //window.alert("Texto1")
//		   $("#text01").show();
//	}
//	if(num==1){
		   //window.alert("Texto2")
//		   $("#text02").show();
//	}
//	if(num==2){
		  // window.alert("Texto3")
//		   $("#text03").show();
//	}
	
	
	
	
});
