$(document).ready(function(){
$("#newsletterSignUp input").focus(function(){
if($(this).val()=="Enter your email..."){
$(this).val("").removeClass("default");
}
});
$("#newsletterSignUp input").blur(function(){
if($(this).val()==""){
$(this).val("Enter your email...").addClass("default");
}
});
var _1="<a href='mailto:getstarted";
_1+="@friend2friend.com'>getstarted";
_1+="@friend2friend.com</a>";
try{
document.getElementById("footer_email").innerHTML=_1;
}
catch(e){
}
try{
document.getElementById("vcard_email").innerHTML=_1;
}
catch(e){
}
try{
document.getElementById("vcard_email2").innerHTML=_1;
}
catch(e){
}
try{
document.getElementById("vcard_email3").innerHTML=_1;
}
catch(e){
}
});


