function solveClasses(t) {

    $('.select').removeClass('selected');
    $(t).addClass('selected');
    
}



jQuery(document).ready(function($) {

    $(function () {
        $('.dropdown').each(function () {
            $(this).parent().eq(0).hoverIntent(function () {                       
                                
                $(this).children().addClass('activemenu');
                if(ie6) { $('#holder select').hide(); }
                $('.dropdown:eq(0)', this).show();
            }, function () {
                if(ie6) { $('#holder select').show(); }
                $(this).children().removeClass('activemenu');
                $('.dropdown:eq(0)', this).hide();
            });
        });
    });
});

