/* 
 * PGiTV
 * 
 */

/*****************
*
* jQuery Events
*
******************/
$(document).ready(function() {

    //MENU
    $('.mainMenu').hoverIntent(showMenu,hideMenu);

    // scroll bar
    $('.videoListWrapper').jScrollPane();

});
function showMenu() {
    if ( !($(this).hasClass("active")) ) {

        $(this).css({'background-position':'0px -49px'});
        $(this).children(".nav-arrow").show();
        $(this).children("a").addClass("active").css({color: '#968B7F'});
        $(this).children(".subNav").stop(true,true).animate({opacity: "toggle", height: "toggle"},{duration:300});
    }
}
function hideMenu() {
    if ( !($(this).hasClass("active")) ) {

        $(this).css({'background-position':'0px 0px'});
        $(this).children(".nav-arrow").hide();
        $(this).children("a").removeClass("active").css({color: '#FFFFFF'});
        $(this).children(".subNav").stop(true,true).animate({opacity: "toggle", height: "toggle"},{duration:100});
    }
}
