var link0 = '<ul><li><a href="http://www.olathe.org/business_directory/members_only/">Members Only</a></li><li><a href="http://www.olathe.org/membership_and_services/leadership/chamber_leaders.asp">Chamber Leadership</a></li><li><a href="http://www.olathe.org/membership_and_services/member_benefits.asp">Get Involved!</a></li><li><a href="http://www.olathe.org/value/">Shop Olathe Chamber members first!</a></li><li><a href="http://olathekscoc.weblinkconnect.com/cwt/external/wcpages/wcdirectory/directory.aspx?&action=newmembers&adkeyword=newmembers">New Members</a></li><li><a href="">Marketing &amp; Sponsorship opportunities</a></li><li><a href="http://www.olathe.org/membership_and_services/occ_foundation.asp">Olathe Chamber of Commerce Foundation</a></li><li><a href="http://www.olathe.org/chamber_news/">Chamber News</a></li><li><a href="http://www.olathe.org/blazingnewtrails/default.asp">Blazing New Trails</a></li><li><a href="http://www.olathe.org/membership_and_services/procuring_local_govt_contracts.asp">Procuring Local Government Contracts</a></li><!--<li><a href="http://www.showtimeinolathe.com">Membership Campaign</a></li>--></ul>';
var link1 = '<ul><li><a href="http://www.olathe.org/edc/olathe_advantage.asp">Olathe Advantage</a></li><li><a href="http://www.olathe.org/edc/members_and_services.asp">EDC Members &amp; Services</a></li><li><a href="http://www.olathe.org/edc/demographics.asp">Demographics</a></li><li><a href="http://www.olathe.org/edc/growth_corridor.asp">Growth Corridors</a></li><li><a href="http://www.olathe.org/edc/office_and_industrial_parks.asp">Office &amp; Industrial Parks</a></li><li><a href="http://www.olathe.org/edc/shopping_centers.asp">Shopping Centers</a></li><li><a href="http://www.olathe.org/edc/development_information.asp">Development Information</a></li><li><a href="http://www.olathe.org/edc/international_growth.asp">International Growth</a></li><li><a href="http://www.olathe.org/edc/edc_advisory_council.asp">EDC Advisory Council</a></li></ul>';
var link2 = '<ul><li><a href="http://www.olathe.org/docs/OCV_visitor_guide.pdf">Official Visitors Guide</a></li><li><a href="http://www.olathe.org/sports/marathon/">Olathe Marathon</a></li><li><a href="http://www.olathe.org/cvb/kc_at_doorstep.asp">KC at our doorstep</a></li><li><a href="http://www.olathe.org/cvb/cvb_advisory_council.asp">CVB Advisory Council</a><li><a href="http://www.olathe.org/cvb/hotels.asp">Book a hotel</a></li><li><a href="http://www.olathe.org/cvb/attractions.asp">Attractions</a></li><li><a href="http://olathekscoc.weblinkconnect.com/CWT/External/WCPages/WCEvents/cvb_festivals.aspx?Category=Festivals%20and%20Events&Keyword=&MonthNumber=0&FromSearch=True&CE=TRUE&OE=TRUE">Festivals &amp; Events</a></li></li><li><a href="http://www.olathe.org/cvb/restaurants.asp"">Restaurants</a></li><li><a href="http://www.olathe.org/cvb/community.asp">Community</a></li><li><a href="http://www.olathe.org/cvb/meeting_rooms.asp">Meeting Rooms</a></li><li><a href="http://www.olathe.org/cvb/sports_venues.asp">Sports Events</a></li><li><a href="http://www.olathe.org/cvb/transportation.asp">Transportation</a></li></ul>';
var link3 = '<ul><li><a href="http://capwiz.com/olathe/state/main/?state=KS">CapWiz</a></li><li><a href="http://www.olathe.org/advocacy/legislative_platform.asp">Legislative Platform</a></li><li><a href="http://www.olathe.org/advocacy/candidate_forums.asp">Candidate Forums</a></li></ul>';
var links = [link0, link1, link2, link3];
var top = [4, 35, 70, 99];
var timer_id = 0;

$(document).ready(function(){
	$("img[class^='mainNavImg']").mouseover(function(){
		clearTimeout(timer_id);
		var id = this.className.split('-');
		id = id[1];
		$('#mainNavSubList').html(links[id]);
		$('#mainNavSubList').css("display", "block");
		$('#mainNavSubList').css("top", top[id]+"px");
	});
	
	$('a.subNavLink, #mainNavSubList').mouseover(function(){
		clearTimeout(timer_id);
	});
	
	$("img[class^='mainNavImg'], a.subNavLink, #mainNavSubList").mouseout(function(){
		timer_id = setTimeout('hideAll()', 3000);
	});
});

function hideAll() {
	clearTimeout(timer_id);
	$('#mainNavSubList').css('display', 'none');
}