$(document).ready(function(){
    var initvalue = $("input#newsletter-email").attr("value");
    $("input#newsletter-email").focus(function() {
        $(this).addClass("focus");
        if ($(this).attr("value") == initvalue) {
            $(this).attr("value", "");
        }
    }).blur(function() {
        $(this).removeClass("focus");
        if ($(this).attr("value") == "") {
            $(this).attr("value", initvalue);
        }
    });
    $("button#newsletter-submit").mouseover(function() {
        $(this).addClass("focus");
    }).mouseout(function() {
        $(this).removeClass("focus");
    });
});
