function follow(url){
	document.location.href = url;
}
$(document).ready(function(){
    $("#first-button").bind("mouseenter",function(){
        $("#button_hover").slideDown("slow");
    });
	$("#button_hover").bind("mouseleave",function(){
        $("#button_hover").slideUp("slow");
    });
	$("#detail-buttons").bind("mouseleave",function(){
        $("#button_hover").slideUp("slow");
    });
	$("#buttons").bind("mouseleave",function(){
        $("#button_hover").slideUp("slow");
    });
    
    $('ul#nav li').each(function(){
        //var onmouseover_img = $(this).parent('li').('a').('img').attr('onmouseover');
        var onmouseover_img = $(this).find('img').eq(0).attr('onmouseover');
        var onmouseout_img  = $(this).find('img').eq(0).attr('src');
        
        $(this).find('ul').eq(0).bind('mouseenter', function(){
              //alert(onmouseover_img);
              $(this).parent('li').find('img').eq(0).attr('src', onmouseover_img);
            }
        );
        
        $(this).find('ul').eq(0).bind('mouseleave', function(){
              $(this).parent('li').find('img').eq(0).attr('src', onmouseout_img);
            }
        );
    })
});

