
var Site = {

	start: function() {
		this.PrepareModals();
		this.HideRedirectMessage();
		this.RunPage(document.body.id ? document.body.id : 'default');
	},
	
	// ======================================================================
	PrepareModals: function() {
		$('a.ajax-link').click(function(){
			var href = $(this).attr('href');
			if (href.indexOf('?') != -1) href += "&"; else href += "?";
			href += "ajax=1";
			
			$.ajax({
				url: href,
				cache: false,
				success: function(html) {
					$.modal(html);
				}
			});
			
			return false;
		});
	},
	
	// ======================================================================
	HideRedirectMessage: function() {
		if ($('#redirect-message')) {
			setTimeout(function() {
				$('#redirect-message').fadeOut();
			},3000);
		}	
	},
		
	// ======================================================================
	RunPage: function(siteId) {
		switch(siteId) {
		
			case 'default':
			
			break;
		
		
		
		
		}
	}

}

$(function() {
	Site.start();
})


