function activatePlaceholders(){if(navigator.userAgent.toLowerCase().indexOf("safari")>0)return false;for(var b=document.getElementsByTagName("input"),a=0;a<b.length;a++)if(b[a].getAttribute("type")=="text"){var c=b[a].getAttribute("placeholder");if(c.length>0)b[a].value=c,b[a].onclick=function(){if(this.value==this.getAttribute("placeholder"))this.value="";return false},b[a].onblur=function(){if(this.value.length<1)this.value=this.getAttribute("placeholder")}}}window.onload=function(){activatePlaceholders()};


