$(document).ready(function() {
	if(!Modernizr.input.placeholder){
		$("input").each(
			function(){
				$("input[name=password]").attr("class","oculto");
   				$("input[name=text]").attr("class","globo-form");
				 
				if($(this).val()=="" && $(this).attr("placeholder")!=""){
					$(this).val($(this).attr("placeholder"));
					
					$(this).focus(function(){
						if($(this).val()==$(this).attr("placeholder")) $(this).val("");
						
						if($(this).attr("name")=="text")
						{
							$(this).attr("class","oculto"); //ocultamos el type="text"
     						$(this).prev().attr("class","globo-form"); //mostramos el type="pass"
							$(this).blur();
							$(this).prev().focus(); 
						}
					});
					
					$(this).blur(function(){
						if($(this).val()=="")
						{
							if($(this).attr("name")=="password")
							{
								$(this).next().attr("class","globo-form"); //mostramos el type="text"
								$(this).attr("class","oculto"); //ocultamos el type="pass"
							}
							$(this).val($(this).attr("placeholder"));
						}
					});
				}
		});
	}
	
	if(!Modernizr.input.placeholder){
		$("textarea").each(
			function(){
				if($(this).val()=="" && $(this).attr("placeholder")!=""){
					$(this).val($(this).attr("placeholder"));
					$(this).focus(function(){
						if($(this).val()==$(this).attr("placeholder")) $(this).val("");
					});
					$(this).blur(function(){
						if($(this).val()=="") $(this).val($(this).attr("placeholder"));
					});
				}
		});
	}
});
