$(document).ready(function(){
   /*$('.hover').mouseover(function(){
        $(this).attr('src',$(this).attr('imgOver'));
    }).mouseout(function(){
        $(this).attr('src',$(this).attr('imgOut'));
    })*/

    $('#newsletter-email').focus(function(){
        if(this.value=='Newsletter Sign Up!'){
            this.value='';
        }
    });
});




