function hs(id){
	if($(id+" .div").css('display')=='none'){
		$(id+" .div").show();
	} else {
		$(id+" .div").hide();
	}
}
function en(){
	var html = '<div id="box-en"><div id="box-en-text">English version will be available soon.<br /><span>Click to disable this message.</span></div></div>';	
	$("body").append(html);
	$("#box-en").fadeIn(350);
	$("#box-en").click(function(){
		$(this).fadeOut(350,function(){
			$(this).remove();
		});
	});
}
