//Preload Recurser
jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}

// preload images first (can run before page is fully loaded)
$.preloadImages("/v/vspfiles/templates/MpCustom02/images/nav/btn-brands-on.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-culture-on.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-downloads-on.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-events-on.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-news-on.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-pilot-on.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-promo-on.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-welcome-on.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-brands-sel.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-culture-sel.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-downloads-sel.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-events-sel.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-news-sel.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-pilot-sel.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-promo-sel.gif", "/v/vspfiles/templates/MpCustom02/images/nav/btn-welcome-sel.gif");


/*
$(
	function()
	{
		// set up rollover
		$("img.rollover").hover(
			function()
			{
				this.src = this.src.replace("_off","_on");
			},
			function()
			{
				this.src = this.src.replace("_on","_off");
			}
		);
	}
)
*/



//This Display the Dark image when a menu navigation button is selected
$(document).ready(function(){
    $('a#button').live('mousedown', function(){
        $(this).addClass("selected");
    });
    $('a#button').live('mouseout', function(){
        $(this).removeClass("selected");
    });
});




