function initPage() {
    if (document.getElementById) {
        var oInput = document.getElementById("signupName");

        oInput.onfocus = function() {
            if (this.value == this.defaultValue) {
                this.value = "";
            }
        }

        oInput.onblur = function() {
            if (this.value == "") {
                this.value = this.defaultValue;
            }
        }
       
        var oInput = document.getElementById("signupCompany");

        oInput.onfocus = function() {
            if (this.value == this.defaultValue) {
                this.value = "";
            }
        }

        oInput.onblur = function() {
            if (this.value == "") {
                this.value = this.defaultValue;
            }
        }

        var oInput = document.getElementById("signupEmail");

        oInput.onfocus = function() {
            if (this.value == this.defaultValue) {
                this.value = "";
            }
        }

        oInput.onblur = function() {
            if (this.value == "") {
                this.value = this.defaultValue;
            }
        }
        

    }
}

if (window.addEventListener) {
    window.addEventListener("load", initPage, false);
} 
else {
    window.attachEvent("onload", initPage);
}
 $(document).ready(function(){
    
    $("#signupClick").click(function () {
      $("#signupForm").show("fast");
    });
    $("#signupSubmit").click(function () {
      $("#signupForm").hide("normal");
    });

  });