
(function($){

	$(document).ready(function(){
		$("#w-language .on button").click(function(){
			$("#w-language .li:not(.on)").toggle();
		});

		$("#w-language button").hover(function(){
			$(this).parents(".li").addClass("focus");
		}, function(){
			$(this).parents(".li").removeClass("focus");
		});
	});
})(jQuery);
