﻿/// <reference path="jquery-vsdoc2.js"/>

var newsTxt = 'Enter Your Email Address';
$(document).ready(function() {
    $("#newsletter-signup input").focus(function() {
        if ($(this).val() == newsTxt) {
            $(this).val("");
        }
    });

    $("#newsletter-signup input").blur(function() {
        if ($(this).val() == "") {
            $(this).val(newsTxt);
        }
    });

    $(".vidLink").click(function() {
        $(this).hide();
        $(this).parent().find(".theVideo").show();
        return false;
    });
});