		function lang_init() {
		  	$("a.toggleIta").css({'font-weight' : 'bold', 'color' : '#CB5F2B'});
			$("#eng").hide();
			$("#ita").show();
			
			$("a.toggleIta").click(function () {
				$("a.toggleEng").css({'font-weight' : 'normal', 'color' : '#FFF'});
				$(this).css({'font-weight' : 'bold', 'color' : '#CB5F2B'});
				$("#eng").hide();
				$("#ita").show();
				return true;
			});
			
			$("a.toggleEng").click(function () {
				$("a.toggleIta").css({'font-weight' : 'normal', 'color' : '#FFF'});
				$(this).css({'font-weight' : 'bold', 'color' : '#CB5F2B'});
				$("#ita").hide();
				$("#eng").show();
				return true;
			});
		}	
