﻿$(document).ready(function() {

    function addDropDown() {
        $(this).addClass("hovering");
    }

    function removeDropDown() {
        $(this).removeClass("hovering");
    }

    var DropDownConfig = {
        interval: 100,
        sensitivity: 4,
        over: addDropDown,
        timeout: 400,
        out: removeDropDown
    };

    $("li.dropdownbox").hoverIntent(DropDownConfig)

});
function launch(url) {
    window.open(url, '', "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resizable=yes,width=720,height=700");
}
