/***** SBCentre.ca » Small Business Centre » Developed by ScriptReaction » www.scriptreaction.com *****/

var shell = {
	init: function (){
		<!-- browser specific -->
		if(window.XMLHttpRequest){
			if(window.ActiveXObject){ // IE 7
				shell.browser = "ie";
				shell.browserId = "ie7";
				document.write('<link href="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="assets/css/global_fixIE6.css" rel="stylesheet" type="text/css" />');
		}
	}
}
/********** shell init **********/
shell.init();