/****************************************
|
| London Home Builders' Association
| Created by: Kevin Biskaborn
| Copyright 2008 ScriptReaction
| http://www.scriptreaction.com
|
****************************************/

/********** shell items **********/
var shell = {
	init: function (){
		<!-- browser specific -->
		if(window.XMLHttpRequest){
			if(window.ActiveXObject){ // IE 7
				shell.browser = "ie";
				return;
			}else{ // Opera, Safari, Firefox
				shell.browser = "gecko";
				return;
			}
		}else{ //IE 6 and below
			shell.browser = "ie";
			shell.browserVersion = 6;
			var x = '<link href="assets/css/global_fixIE6.css" rel="stylesheet" type="text/css" />';
			document.write(x);
		}
	}
}

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