$(document).ready(function() {
$("#header").mouseover(function() {
$(this).css("cursor", "pointer");});
$("#header").mouseout(function() {
$(this).css("cursor", "default"); });
$("#header").click(function() {
window.location = "index.html"; });
});