function Itinera(){

}

Itinera.prototype = {
	
	container : "gui",
	swf	:	"layout_fra.swf",	
	width:	800,
	height: 600,
	pages : ["home", "chi siamo", "servizi", "news", "certificazione", "contatti" ],
	
	
	start: function() {
		if (swfobject.hasFlashPlayerVersion("9.0.0")) {
		
			var flashvars = {};
			var params = {
				"allowScriptAccess" : "sameDomain",
				"wmode"	:	"opaque"
			};
			
			var d = document.createElement("div");
			d.setAttribute("id", "layout");
			document.getElementById(this.container).appendChild(d);
		
			swfobject.embedSWF(this.swf, "layout", this.width, this.height, "9.0.0", "expressInstall.swf", flashvars, params);
			
			$("#content").hide();
			$("#hidden" ).hide();
			$("#layout").css("z-index", "0");
			
		}
		else {
			// TODO interfaccia solo HTML
		}
	
	},
	
	showContent: function(label) {
		
		var id = '#' + label.replace( /\ /g, '_' );
		
		$("#content .inContent").empty().html( $(id).html() );
		$("#content").show();
	}
	
	
	
};
