jQuery(function(){
	jQuery('#menu-header li:has(ul)').mouseover(function(){
		jQuery(this).children('ul').css('display', 'block')
	})
	jQuery('#menu-header li:has(ul)').mouseout(function(){
		jQuery(this).children('ul').css('display', 'none')
	})
})


$(function(){
	$('#change-lang').toggle(
			function(){ $('ul#menu-languages .depth1').css('display','block');return false; },
			function(){ $('ul#menu-languages .depth1').css('display','none'); return false;}
	);
});
