$(document).ready(function(){
    $('#navigation>ul>li').hover(function(){
        $(this).addClass('hover');
        if($.browser.msie && $.browser.version == '6.0') {
        	$('select').css('visibility', 'visible'); //hidden
        }
    }, function(){
        $(this).removeClass('hover');
        if($.browser.msie && $.browser.version == '6.0') {
            $('select').css('visibility', 'visible');
        }
    });
//    $('#category-dropdown').change(function(){
//        if($(this).val() != 1) {
//            window.location.href = $(this).val();
//        }
//    });
});

