var site = null;

var Chiquinho = Class.create({
	initialize : function(links) {
		this.justloaded = true;
		this.currentLink = undefined;
		this.links = links;
		this.contentEl = $('content-wrapper');

		this.site_urls = {
				home : '/', 
				empresa : '/empresa',
				artista : '/artista',
				agenda : '/agenda',
				locacao : '/locacao',
				contrate : '/contrate',
				depoimento : '/depoimento',
				parceiro : '/parceiro',
				contato : '/contato',
				artista1 : '/artista/show/id/1',
				artista2 : '/artista/show/id/2',
				artista3 : '/artista/show/id/3',
				artista4 : '/artista/show/id/4',
				artista5 : '/artista/show/id/5',
				artista6 : '/artista/show/id/6',
				artista7 : '/artista/show/id/7',
				artista8 : '/artista/show/id/8',
				artista9 : '/artista/show/id/9',
				artista10 : '/artista/show/id/10',
				artista11 : '/artista/show/id/11',
				artista12 : '/artista/show/id/12',
				artista13 : '/artista/show/id/13',
				artista14 : '/artista/show/id/14',
				artista15 : '/artista/show/id/15',
				artista16 : '/artista/show/id/16',
				artista17 : '/artista/show/id/17',
				artista18 : '/artista/show/id/18',
				artista19 : '/artista/show/id/19',
				artista20 : '/artista/index',
				artista_discografia : '/artista/discografia',
				locacao_som : '/locacao.php/produto/1',
				locacao_luz : '/locacao.php/produto/2',
				locacao_palco : '/locacao.php/produto/3',
				locacao_contato : '/locacao.php/contato',
		};
		
		this.protoHistoryManager = new ProtoHistoryManager();
		this.reqHistory = this.protoHistoryManager.register('pages',
				[ this.links[0] ], // default, page 0
				function(values) {
					var index = this.links.indexOf(values[0]);
					if (index == 0 && this.justloaded) {
						return;
					}
					
					if (index != -1) {
						this.justloaded = false;
						this.linkClick(this.site_urls[values[0]], values[0]);
					}
				}.bind(this));
		this.protoHistoryManager.start();
	},

	linkClick : function(url, linkid) {
		this.currentLink = {
			url : url,
			linkid : linkid
		};
		this.getPage();
	},

	getPage : function() {
		if (this.currentLink != undefined) {
			var url = this.currentLink.url;
			new Ajax.Updater('content-wrapper', url, {
				encoding : 'UTF-8',
				asynchronous : true,
				evalScripts : true,
				onSuccess : function() {
					this.reqHistory.setValue(0, this.currentLink.linkid);
				}.bind(this)
			});
		}
	}
});

Event.onDOMReady(function() {
	if (site == null) {
		site = new Chiquinho( [ 
		                        'home', 'empresa', 'artista', 'agenda', 'locacao',
		                        'contrate', 'depoimento', 'parceiro', 'contato',
		                        'artista1', 'artista2', 'artista3', 'artista4',
		                        'artista5', 'artista6', 'artista7', 'artista8',
		                        'artista9', 'artista10', 'artista11', 'artista12',
		                        'artista13', 'artista14', 'artista15', 'artista16',
		                        'artista17', 'artista18', 'artista19', 'artista20', 'artista_discografia',
		                        'locacao_som', 'locacao_luz', 'locacao_palco', 'locacao_contato'
		                      ] );
	}
});
