jQuery(function($) { $('.map-cont .map-el h2').click(function() { var to = $(this).parent().attr('id'); $('.map-cont .map-el .slider').hide(); $('#'+to+' .slider').show(); }); $('.map-cont .map-el h2').mouseover(function() { $(this).toggleClass('hover'); }).mouseout(function() { $(this).toggleClass('hover'); }); });