﻿$(document).ready(function () {
    var windowHeight = $(window).height();

    $(".category_list li").mouseover(function () {
        var offset = $(this).offset();
        var difference = windowHeight - offset.top;
        if ($(this).children("ul").height() > difference) {
            $(this).children("ul").css("bottom", "-28px").css("top", "auto");
        }
    });

    $("ul.firstCMSListMenuUL ul.secondCMSListMenuUL, ul.secondCMSListMenuUL ul.thirdCMSListMenuUL, .side_nav ul ul").css("display", "none");

    $(".main_nav ul li, .side_nav ul li").hoverIntent(function () {
        $(this).children("ul").stop(true, true);
        $(this).children("ul").slideDown(400);
    }, function () {
        $(this).children("ul").slideUp(200);
    });

//    $(".scrolling_news_list").serialScroll({
//        items: 'li',
//        duration: 1200,
//        force: true,
//        axis: 'y',
//        cycle: true,
//        interval: 5000
//        });

    //Scroll the Home Page images
    $(".scrolling_news_container").carouFredSel({
        width: 698,
        direction: 'up',
        scroll: { items: 1, pauseOnHover: true, duration: 1500, easing: 'linear' },
        auto: { pauseDuration: 4000 }
    });

});
