jQuery(function($) { $('.map a').click(function() { var to = $(this).attr('name'); $('.map a, .map-cont .map-el h3').removeClass('th'); $(this).addClass('th'); $('.map-cont .map-el .slider').hide(); $('#'+to+' .slider').show(); $('#'+to+' h3').addClass('th'); }); $('.map-cont .map-el h3').click(function() { var to = $(this).parent().attr('id'); $('.map a[name='+to+']').trigger('click'); }); $('.map-cont .map-el h3').mouseover(function() { $(this).toggleClass('hover'); }).mouseout(function() { $(this).toggleClass('hover'); }); });