
var oClick = {
	
	handleEngine: function (sAHash)
	{
		switch(sAHash)
		{
			case '':
			//case 'news':
			case 'home':
				//oApp.displayLocation('amica_on_the_world', null);
				oApp.displayLocation('home', null);
				break;

			default:
				oApp.displayLocation(sAHash, null);
				break;
		}
		dhtmlHistory.add(sAHash, null);
	},
	
	handleInline: function (sAHash) 
	{
		//alert('handle inline click: '+ sAHash);
		this.handleEngine(sAHash);
	},
	
	handleEvent: function (oEvent, sAHash) 
	{
		//alert('handle event click: '+ sAHash);
		oClick.handleEngine(sAHash);
	}
	

} // oClick



