// JavaScript Document
function faux_onLoad(){
	// quit if this function has already been called
  if (arguments.callee.done) return;

  // flag this function so we don't do the same thing twice
  arguments.callee.done = true;

  // do stuff
	external(); //launch external window script
	//geo(); //launch Graceful E-mail Obfuscations
	BrowserDetect.init(); //Launch Browser Detection
	
	/* for Internet Explorer */
	/*@cc_on @*/
	/*@if (@_win32)
		
		//if IE6...launch superSleight
		if(BrowserDetect.version == 6){
			// limit to part of the page ... pass an ID to limitTo:
			supersleight.limitTo('header');
			supersleight.init();
			supersleight.run();
		}
	
	/*@end @*/
	
}

/* for Mozilla */
if (document.addEventListener) {
	 document.addEventListener("DOMContentLoaded", faux_onLoad, false);
}

/* for Internet Explorer */
/*@cc_on @*/
/*@if (@_win32)
	 document.write("<script defer src=ie_init.js><"+"/script>");
/*@end @*/

/* for other browsers */
window.onload = faux_onLoad;