/****************************************
|
| Entrepreneur London
| Created by: Kevin Biskaborn
| Copyright 2009 ScriptReaction
| http://www.scriptreaction.com
|
****************************************/

/********** shell items **********/
var shell = {
	init: function (){
		<!-- browser specific -->
		if(window.XMLHttpRequest){
			if(window.ActiveXObject){ // IE 7
				shell.browser = "ie";
				shell.browserId = "ie7";
				document.write('<link href="http://www.scriptreaction.com/clients/sbc/elondon/assets/css/global_fixIE7.css" rel="stylesheet" type="text/css" />');
			}else{ // Opera, Safari, Firefox
				shell.browser = "gecko";
				shell.browserId = "gecko";
			}
		}else{ //IE 6 and below
			shell.browser = "ie";
			shell.browserVersion = 6;
			shell.browserId = "ie6";
			document.write('<link href="http://www.scriptreaction.com/clients/sbc/elondon/assets/css/global_fixIE6.css" rel="stylesheet" type="text/css" />');
		}
	}
}

/********** shell init **********/
shell.init();
