$(document).ready(function(){
	$('#showr').toggle(function() {
		$("#newsContent").show(500);
		$('#showr').attr('value', '[ Nascondi ]');
	}, function() {
		$("#newsContent").hide(500);
		$('#showr').attr('value', '[ Mostra ]');
	});
	
	
	$('#nav li a').attr('href', function() {
		return this.href + '#page';
	});
	
	$('#nav1 li a').attr('href', function() {
		return this.href + '#page';
	});
	
});
