﻿/// <reference path="~/MasterPages/Root.Master"/>
/// <reference path="~/Default.aspx"/>
/// <reference path="http://ajax.aspnetcdn.com/ajax/4.0/1/WebForms.js"/>
/// <reference path="http://ajax.aspnetcdn.com/ajax/4.0/1/MicrosoftAjax.js"/>
/// <reference path="~/Scripts/jquery-1.7.js"/>
Sys.require(Sys.scripts.jQuery, function () {
    $("#FindYourIndustry ul.industries").hide(0);
    $("#FindYourIndustry span").mouseenter(function () {
        $("#FindYourIndustry").css("background", "url('/App_Themes/Evergreen/images/findyourindustry-over.png') no-repeat bottom left");
        $("#FindYourIndustry ul.industries").show("fast");
    });
    $("#FindYourIndustry").mouseleave(function () {
        $("#FindYourIndustry").css("background", "url('/App_Themes/Evergreen/images/findyourindustry.png') no-repeat bottom left");
        $("#FindYourIndustry ul.industries").hide("fast");
    });
});
