/**
 * @author Michele
 */

var menuIsOpen = false;

$(document).ready(hideNSContent);

function hideNSContent()
{
	$(".invisible").hide();
	$(".Contents").hide();
	$("#Content1").show();
	$("#Menu").animate({"top": "-=33px"}, "slow");
	$("#home").remove();
}

function openClose(){
	
	if(menuIsOpen)
	{
		$("#Menu").animate({"top": "-=33px"}, "slow");
		menuIsOpen = false;
	}
	else {
		$("#Menu").animate({"top": "+=33px"}, "slow");
		menuIsOpen = true;
	}
	
}

function goTo(where,lingua) {
		
		$('#cont').hide();
		
		var myurl = '/ajax/' + where + '.php?lang=' + lingua;
		$.ajax({
		type: "GET",
		url: myurl,
  		success: function(transport) {
		
		$('#cont').html(transport);
		$('#cont').show();
		$('#cont').ScrollTo(800);
  			}
		});
	}

function changeTab(who, what)
{
	$(who).siblings().removeClass("on");
	$(who).addClass("on");
	$(".Contents").hide();
	$(what).show();
	
}

