$(document).ready(function(){
   /*$('.hover').mouseover(function(){
        $(this).attr('src',$(this).attr('imgOver'));
    }).mouseout(function(){
        $(this).attr('src',$(this).attr('imgOut'));
    })*/

    $('#footer-newsletter-email').focus(function(){
        if(this.value=='enter your email'){
            this.value='';
        }
    });

    $('#footer-newsletter .input').click(function(){
        this.value=''
    })
});




