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.olathe.org/great_deals/default.asp">Shop Local. Book Local. <em>Great Deals!</em></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" target="_blank">Official Visitors Guide</a></li><li><a href="http://www.olathe.org/cvb/sports/Marathon/index.html">Olathe Marathon</a></li><li><a href="http://www.olathe.org/cvb/visitor/kc_metro.html">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/visitor/hotels.html">Book a hotel</a></li><li><a href="http://www.olathe.org/cvb/visitor/index.html">Attractions</a></li><li><a href="http://olathekscoc.weblinkconnect.com/cwt/external/wcpages/wcevents/cvb_festivalsandevents.aspx">Festivals &amp; Events</a></li></li><li><a href="http://www.olathe.org/cvb/visitor/restaurants.html">Restaurants</a></li><li><a href="http://www.olathe.org/cvb/visitor/community.html">Community</a></li><li><a href="http://www.olathe.org/cvb/meeting_planner/meeting_facilities.html">Meeting Facilities</a></li><li><a href="http://www.olathe.org/cvb/sports_venues.asp">Sports</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/docs/healthcare_reform_march2010.pdf" target="_blank">Health Care Reform</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');
}