function build_topnav(){ var html = '
Select Property
By Its Size
Select Property
Number Of People
Select Property
By Location
Select Property
Proximity To Slopes
Select Property
By Price
Special Offers
'; $('#topnav').html(html); } $(function() { build_topnav(); $('.topnav_tab') .mouseenter(function(){ var offset = $(this).offset(); $('.topnav_link_div').hide(); $(this).addClass('topnav_hover'); $(this).find('.topnav_link_div') .css('top', (offset.top + $(this).outerHeight())+'px') .css('left', (offset.left - 0)+'px') .stop(true,true) .slideDown(400); }).mouseleave(function(){ $(this).removeClass('topnav_hover'); $(this).find('.topnav_link_div').hide(); }); $('.topnav_link') .mouseenter(function(){ $(this).addClass('topnav_link_hover'); }).mouseleave(function(){ $(this).removeClass('topnav_link_hover'); }); });