// JavaScript Document
$(function(){
	//ponemos en blanco  los campos del formulario de login y registro cuando se pone el raton encima
	$(".campo > input").focus(function(){
		if($(this).attr("value")==$(this).attr("defaultValue")){
			$(this).attr("value", "");
		}
	});
	$(".campo > input").blur(function(){
		if($(this).attr("value")==""){
			$(this).attr("value", $(this).attr("defaultValue"));
		}
	});
	$(".campo > textarea").focus(function(){
		if($(this).attr("value")==$(this).attr("defaultValue")){
			$(this).attr("value", "");
		}
	});
	$(".campo > textarea").blur(function(){
		if($(this).attr("value")==""){
			$(this).attr("value", $(this).attr("defaultValue"));
		}
	});
	var c = $(".campo > input").get();
});
