﻿$(document).ready(function () { $.getScript('/wavemaster.internal/lib/jquery/jquery.hoverIntent.minified.js', function () { function navigationShow() { navItem = $(this).attr("id"); $(".current-grid").hide(); $(".sub").hide(); $("#selected").css({ "background-color": "transparent", "color": "#fff" }); $("#" + navItem + " > a").css({ "background-color": "#ebebeb", "color": "#ab0836" }); $("." + navItem + "_options").slideDown("fast") } function navigationHide() { navItem = $(this).attr("id"); $("." + navItem + "_options").hide(); $("#" + navItem + " > a").css({ "background-color": "transparent", "color": "#fff" }); $("#selected").css({ "background-color": "#ebebeb", "color": "#ab0836" }); $(".current-grid").show() } var config = { sensitivity: 3, interval: 100, over: navigationShow, timeout: 100, out: navigationHide }; $("#nav1").hoverIntent(config); $("#nav2").hoverIntent(config); $("#nav3").hoverIntent(config); $("#nav4").hoverIntent(config); $("#nav5").hoverIntent(config); $("#nav6").hoverIntent(config); $("#nav7").hoverIntent(config); $("#nav8").hoverIntent(config); $("#nav9").hoverIntent(config); $("#nav10").hoverIntent(config) }) });