if (document.getElementById('quicklogin_box')) {
var maxTries=0;
var timer=window.setTimeout("goOnWithYou()",1000);
}

function goOnWithYou() {
maxTries++;
if (document.getElementById('quicklogin_box').childNodes[0]) changeLink();
else if (maxTries<5) timer=window.setTimeout("goOnWithYou()",1000);
}

function changeLink() {
var links=document.getElementsByTagName('a');
for (i=0;i<links.length;i++) {
if (links[i].firstChild&&links[i].firstChild.data&&links[i].firstChild.data=="enter your contact information.") {
links[i].firstChild.data="CLICK HERE FOR FIRST TIME USERS";
links[i].style.textDecoration="underline";
links[i].style.fontWeight="bold";
}
}
}

