$(function() {
    $('.navigation li').hover(function() {
    	$(this)
    		.find('.subMenu')
    		.stop(true, true)
    		.show('normal');
    }, function() {
    	$(this)
    		.find('.subMenu')
    		.stop(true, true)
    		.slideUp('fast')
    });
    $('.subMenu li:has(.thirdMenu) a').addClass('more');
    $('.thirdMenu a').removeClass('more');
    $('.subMenu li').hover(function() {
    	$(this)
    		.find('.thirdMenu')
    		.stop(true, true)
    		.show('normal');
    }, function() {
    	$(this)
    		.find('.thirdMenu')
    		.stop(true, true)
    		.slideUp('fast')
    });
});
