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');
		$('loading').style.display='';
	}
	
}