$(document).ready(function(){$("#showDetailed").bind("click",function(){$("#weatherDetails").slideDown("slow");$("#showDetailed").hide();$("#hideDetailed").show();});$("#hideDetailed").bind("click",function(){$("#weatherDetails").slideUp("slow");$("#hideDetailed").hide();$("#showDetailed").show();});$("#addComment").bind("click",function(){$("#addCommentForm").slideDown("slow");});$(".buttonTop").bind("mouseenter",function(){$(this).css("background","url(/images/buttonTop.jpg)");var index=$(this).attr("id");$(".submenuTop").each(function(){$(this).hide();});$("#submenuTop"+index).show();});$(".buttonTop").bind("mouseleave",function(){$(this).css("background","none");});});