
var Site = {

	StartFunctions: [],
		
	// ======================================================================
	start: function() {
		this.HideRedirectMessage();
		this.RunStartFunctions();
		this.RunPage(document.body.id ? document.body.id : 'default');
	},
		
	// ======================================================================
	addStartFunction: function(f) {
		this.StartFunctions.push({
			f: f,
			started: false
		});
	},
		
	// ======================================================================
	RunStartFunctions: function() {
		for(var I in this.StartFunctions) {
			if (!this.StartFunctions[I].started) {
				this.StartFunctions[I].started = true;
				this.StartFunctions[I].f();
			}
		}
	},
	
	// ======================================================================
	HideRedirectMessage: function() {
		if ($('#redirect-message')) {
			setTimeout(function() {
				$('#redirect-message').fadeOut();
			},3000);
		}	
	},
		
	// ======================================================================
	RunPage: function(siteId) {
		switch(siteId) {
		
			case 'default':
			
			break;
		}
		
		$('a.confirm-link').click(function(){
			return confirm('Are you sure?');
		});
		
		$('#event-content > img').click(function(){
			href = $('a.event-details').attr('href');
			if (href.length > 0) {
				window.location = href;
			}
		});
	}

}

$(function() {
	Site.start();
})


