$(document).ready(function(){

$("#way").hide();

$("div.header a:has(img)").mouseover(function(){
      document.body.style.cursor='pointer';
    }).mouseout(function(){
            document.body.style.cursor='default';
    });

$("div.header a:has(img)").click(function(event){
    event.preventDefault();
    $("#way").toggle();});

});