﻿/*************************************
Selecthinds javascripts
**************************************/

// initialise navigation plugins
jQuery(function() {
    jQuery('ul.sf-menu').superfish({
        autoArrows: true
    });
    
    // set up rollover
    $("img.rollover").hover(function() {
			    this.src = this.src.replace("_off", "_roll");
			},function() {
			    this.src = this.src.replace("_roll", "_off");
			});
});


//preloader
jQuery.preloadImages = function() {
    for (var i = 0; i < arguments.length; i++) {
        jQuery("<img>").attr("src", arguments[i]);
    }
}

//preload actual nav
$.preloadImages( "/images/NAV_DISTRICT.jpg"
                ,"/images/NAV_DISTRICT_o.jpg"
                ,"/images/NAV_HINDSCOUNTY.jpg"
                ,"/images/NAV_HINDSCOUNTY_o.jpg"
                ,"/images/NAV_EXISTINGBUSINESS.jpg"
                ,"/images/NAV_EXISTINGBUSINESS_o.jpg"
                ,"/images/NAV_SITESELECTORS.jpg"
                ,"/images/NAV_SITESELECTORS_o.jpg"
                ,"/images/NAV_WORKFORCE.jpg"
                ,"/images/NAV_WORKFORCE_o.jpg"
                ,"/images/NAV_TAXESINCENTIVES.jpg"
                ,"/images/NAV_TAXESINCENTIVES_o.jpg"
                ,"/images/NAV_INFRASTRUCTURE.jpg"
                ,"/images/NAV_INFRASTRUCTURE_o.jpg"
                ,"/images/NAV_AVAILABLEPROPERTIES.jpg"
                ,"/images/NAV_AVAILABLEPROPERTIES_o.jpg"
                ,"/images/NAV_EDUCATON.jpg"
                ,"/images/NAV_EDUCATON_o.jpg"
               );


//preload lower nav
/*
$.preloadImages( "images/educationimages/belhaven_roll.jpg"
               , "images/educationimages/hindscc_roll.jpg"
               , "images/educationimages/mc_roll.jpg"
               , "images/educationimages/virginia_roll.jpg"
               , "images/educationimages/milsaps_roll.jpg"
               , "images/educationimages/tougaloo_roll.jpg"
               , "images/educationimages/ummc_roll.jpg"
               , "images/educationimages/seminary_roll.jpg"
               , "images/educationimages/jacksonstate_roll.jpg"
               , "images/nav/business_roll.gif"
               , "images/nav/county_roll.gif"
               , "images/nav/district_roll.gif"
               , "images/nav/incentives_roll.gif"
               , "images/nav/infrastructure_roll.gif"
               , "images/nav/properties_roll.gif"
               , "images/nav/selectors_roll.gif"
               , "images/nav/workforce_roll.gif"
               );
*/


