$(function(){
    
     $('#header').click(function(){
       window.location = 'index.html'; 
    });
    $('#header').hover(function(){
       $(this).css('cursor', 'pointer'); 
    });

});
