$(function(){
	//Navigation	   
	$('.navTitle').hover(function(){
		var _this = $(this),
			_subnav = _this.children('ul');
 
		_this.addClass("navActive");
		_subnav.css('display', 'block');
	} , function(){
		$(this).removeClass("navActive").children('ul').css('display', 'none');
	});
	
	//Language and Country
	$("#Langmenu li").hover(function(){
		var _this = $(this),
		_LangMenuNav = _this.children("ul");
		_LangMenuNav.stop(true, true).fadeIn(400);
		}, function(){
			$(this).children("ul").stop(true, true).fadeOut(400);
			});

	return false;
 
	$('a').focus(function(){
		this.blur();
	});
});
