function Item(){
	//this.id = itemID;
	this.getContent = function(itemID){
		this.id = itemID;
		args = new Array();
		args.push(itemID);
		sajax_do_call('item','getContent',args,'content');
		document.getElementById('content').innerHTML='Loading ...';
	}
}

function setHeader(filename,name){
	document.getElementById('header').src = "header/"+filename;
	document.title = "FanFest 2006 - "+name;
	}
	
function meniu(id){
	Item.getContent(id);
	}