function imgCache() {
	var d=document;
	if(d.images) { 
		if(!d.MM_p) d.MM_p=new Array();
		var i,j=d.MM_p.length,a=imgCache.arguments; for(i=0; i<a.length; i++)
		if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}
	}
}

/* Pre-load dynamic-swap images */
$(document).ready(function() {
	imgCache(
		'/images/bg-mn-1.png',
		'/images/bg-mn-2.png',
		'/images/bg-mn-3.png',
		'/images/bg-mn-4.png',
		'/images/bg-mn-5.png',
		'/images/bg-mn-6.png',
		'/images/bg-mn-7.png',
		'/images/bg-mn-8.png'
	);
});

/* Navigation hovers and flyouts */

$(document).ready(function () {

	$('#mn1').mouseenter(function () {
		$(this).addClass('mn-on mn1-on');
		$(this).children('div.mn_flyout').show();
	});
	$('#mn1').mouseleave(function () {
		$(this).removeClass('mn-on mn1-on');
		$(this).children('div.mn_flyout').hide();
	});

	$('#mn2').mouseenter(function () {
		$(this).addClass('mn-on mn2-on');
		$(this).children('div.mn_flyout').show();
	});
	$('#mn2').mouseleave(function () {
		$(this).removeClass('mn-on mn2-on');
		$(this).children('div.mn_flyout').hide();
	});

	$('#mn3').mouseenter(function () {
		$(this).addClass('mn-on mn3-on');
		$(this).children('div.mn_flyout').show();
	});
	$('#mn3').mouseleave(function () {
		$(this).removeClass('mn-on mn3-on');
		$(this).children('div.mn_flyout').hide();
	});
	
	$('#mn4').mouseenter(function () {
		$(this).addClass('mn-on mn4-on');
		$(this).children('div.mn_flyout').show();
	});
	$('#mn4').mouseleave(function () {
		$(this).removeClass('mn-on mn4-on');
		$(this).children('div.mn_flyout').hide();
	});
	
	$('#mn5').mouseenter(function () {
		$(this).addClass('mn-on mn5-on');
		$(this).children('div.mn_flyout').show();
	});
	$('#mn5').mouseleave(function () {
		$(this).removeClass('mn-on mn5-on');
		$(this).children('div.mn_flyout').hide();
	});

	$('#mn6').mouseenter(function () {
		$(this).addClass('mn-on mn6-on');
		$(this).children('div.mn_flyout').show();
	});
	$('#mn6').mouseleave(function () {
		$(this).removeClass('mn-on mn6-on');
		$(this).children('div.mn_flyout').hide();
	});

	$('#mn7').mouseenter(function () {
		$(this).addClass('mn-on mn7-on');
		$(this).children('div.mn_flyout').show();
	});
	$('#mn7').mouseleave(function () {
		$(this).removeClass('mn-on mn7-on');
		$(this).children('div.mn_flyout').hide();
	});

	$('#mn8').mouseenter(function () {
		$(this).addClass('mn-on mn8-on');
		$(this).children('div.mn_flyout').show();
	});
	$('#mn8').mouseleave(function () {
		$(this).removeClass('mn-on mn8-on');
		$(this).children('div.mn_flyout').hide();
	});

});
