/****************************************
| ** Basic Splash Moo **
|
| Created by:	 James Hicks
| Date Created:	 2007-10-11
| Copyright 2007 Lightmaker Manchester
|
****************************************/



window.addEvent('domready', function() {

	if(window.opera) {
		document.body.addClass("opera");	
	}
	
	splashUI.splashPopup = new Splash_Popup();
	splashUI.splashSlabs = new Splash_Slabs();
	splashUI.splashTextInput = new Splash_TextInput();
});

window.addEvent('load', function() {
	if(splashUI.splashPopup) {
		splashUI.splashPopup.triggerDeepLink();
	}
});


var splashUI = new function() {};

var splashConfiguration = new function() {};

function showPopupFromCarousel(loc) {
	splashUI.splashPopup.showPopup(loc);	
}


function goToPromo(url){
	if (url.length > 0) {
		location.href = url;
	} 
}

