﻿function setSeondaryNavigationRollover()
{
    $('#secondary-navigation-wrapper > li').css('cursor', 'pointer');
    
    $('#secondary-navigation-wrapper > li').hover(function(e) {
        if(!$(this).hasClass('active'))
        {
            $(this).addClass('rollover');
            
            if($(this).children('div').length)
            {
                $(this).children('div').hoverFlow(e.type, {
                    'opacity': 'show'
                }, 'fast');
            }
        }
        else
            $(this).css('cursor', '');
       
    }, function(e) {
       if(!$(this).hasClass('active'))
        {
            $(this).removeClass('rollover');
            
            if($(this).children('div').length)
            {
                $(this).children('div').hoverFlow(e.type, {
                    'opacity': 'hide'
                }, 'fast');
            }
        } 
    });
}
