﻿///<reference path="S:/SupportFiles/jquery-1.2.6-vsdoc.js" />

$(document).ready(function(){
    $('.menutab').each(function(){
        /*if($(this).hasClass('active') == false)
        {*/
            $(this).hover(function(){
                $(this).addClass('onhover');
                $(this).children('.dropdownmenu').show();
            },function(){
                $(this).removeClass('onhover');
                $(this).children('.dropdownmenu').hide();
            });
        /*}*/
    });
    
    $('.dropdownmenu .item').hover(function(){
        $(this).addClass('onhover');
    },function(){
        $(this).removeClass('onhover');
    });
    
    $('.dropdownmenu .item a.hasSub').parent().hover(function(){
        $(this).children('.dropdownmenu').show();
    },function(){
        
        $(this).children('.dropdownmenu').hide();
    });
});

