/*jQuery(function($) {
	// Global menu
	$('#langMenu').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
	
	var eachTimeout = [],
		target = $('ul#langMenuItem');
	
	target.each(function(i) {
		var $this = $(this);
		$this.parent().hover(function() {
			target.hide();
			$this.show();
		}, function() {
			$this.hide();
		});
	});
});*/
$(document).ready(function() {
	$("#langMenu").click(function(){
		if ($('ul#langMenuItem').css('display') == 'block') {
			$('ul#langMenuItem').css('display', 'none');
		} else {
			$('ul#langMenuItem').css('display', 'block');
		}
		return false;
	});
	$(window).click(function () {
		$('ul#langMenuItem').css('display', 'none');
	});
});
