if (!window.facesMessages) window.facesMessages={};
var noFormFocus=true,
    inputSelector=".homepage_contact .input_text",
    initialValue="Your Email Address";
jQuery(document).ready(function() {
    jQuery(inputSelector).each(function() {
        if(!window.facesMessages[this.id] || this.value==initialValue) {
            this.value=initialValue;
            this.style.fontStyle="italic";
            this.style.color="#999999";
        }
    });
});

function formFocus() {
    if(noFormFocus) {
        noFormFocus=false;
        jQuery(inputSelector).each(function() {
            if(!window.facesMessages[this.id] || this.value==initialValue) {
                this.value="";
                this.style.fontStyle="normal";
                this.style.color="#777777";
            }
        });
    }
}

function homepageAlignThanks() {
    vAlignCenter(".homepage_thanks",65);
}
