﻿$(function () {

    $('#slider ul').cycle({
        timeout: 4000,
        speed: 1000,
        fx: 'fade'      
    });

    $('#navbar li').hoverIntent({
        over: showSubmenu1,
        out: hideSubmenu1,
        timeout: 100
    });
    $('#navbar li .submenu-1 li').hoverIntent({
        over: showSubmenu2,
        out: hideSubmenu2,
        timeout: 100
    });

    $('#slider-promos').cycle({
        timeout: 4000,
        speed: 1000,
        fx: 'fade'      
    });
});
function showSubmenu1() { $(this).find('.submenu-1').show() };
function hideSubmenu1() { $(this).find('.submenu-1').hide() };
function showSubmenu2() { $(this).find('.submenu-2').show() };
function hideSubmenu2() { $(this).find('.submenu-2').hide() };
