//drop down menu
$(document).ready(function () {
    $('#menu li:has(ul) > a').addClass('more');
    $('a.more').append('<span class="arrow">&nbsp;&nbsp;&raquo;</span>');
    $('#menu li').hover(function () {
	    $(this).find('ul:first').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 200).addClass('active_list');
    }, function () {
	    $(this).children('ul.active_list').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 400).removeClass('active_list');
            
    });
});

//lang drop down

$(document).ready(function () {
    $('#lang_list li:has(ul) > a').addClass('more');
    $('#lang_list li').hover(function () {
	    $(this).find('ul:first').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 200).addClass('active_list');
    }, function () {
	    $(this).children('ul.active_list').stop(true, true).animate({opacity: 'toggle', height: 'toggle'}, 400).removeClass('active_list');

    });
});
