function im_show_popup(id) { $("#"+id+"_popup").fadeIn(); } function im_hide_popup(id) { $("#"+id+"_popup").fadeOut("fast"); } function im_hide_all_popups() { $(".im_popup").hide(); } function mod_map_init() { // areas $(".im_area").css("opacity", "0.2"); // show on hover $(".im_hover").hover(function(e){ im_hide_all_popups(); im_show_popup( $(this).attr("id") ); },1000 ); // show on click $(".im_click").click(function(e){ im_hide_all_popups(); im_show_popup( $(this).attr("id") ); }); $("#im_image").click(function(e){ im_hide_all_popups(); }); }