﻿var boxValue;

$(function() {
    $(".TextBox").focus(
    function() {
        boxValue = $(this).val();
        $(this).val("");
    });
    $(".TextBox").blur(
     function() {
         if ($(this).val().length == 0) {
             $(this).val(boxValue);
         }
     });
    $("input").click(function() {
        (this).select();
    });
    $(".Button").hover(
        function() {
        $(this).css("color", "#aa5889");
        }, 
        function() { $(this).css("color", "#658F95"); }
    );
    $(".Label").hover(
        function() {
            $(this).css("color", "#aa5889");
        },
        function() { $(this).css("color", "#658F95"); }
    );

}
);

function GetEmail() {
    var emailbox = $("#ctl00_ctl00_FooterControl_emailTextbox").val();


    var href = "http://visitor.constantcontact.com/email.jsp?p=oi&m=1101620037379&ea=" + emailbox;


    window.open(href, '_blank');
}

function GetEmail2() {
    var emailbox = $("#emailTextbox").val();


    var href = "http://visitor.constantcontact.com/email.jsp?p=oi&m=1101620037379&ea=" + emailbox;


    window.open(href, '_blank');
}





