/*
*
*	@Software:	H2O
*	@Version:	1.0
*	@Author:	Frozensheep - http://www.frozensheep.com
*	@File:		/includes/scripts/H2O.js
*	@File-Version:	$Rev: 162 $
*	@Last-Change:	$LastChangedDate: 2007-05-09 16:46:42 +0100 (Wed, 09 May 2007) $
*	@Description:	Javascript file to contain the basic H2O functions
*
*/

	
addEvent(window, 'load', H2OSetup);


/*
*
*	@Method:	H2OSetup
*	@Parameters:	0
*	@Description:	Sets up the page to make use of javascript and XHR if its enabled
*
*/
function H2OSetup(){
	if(XHRCheck()){
		//hide the no javascript banner
		$('#javascriptwarning').hide();
		
		//setup the XHR stack
		setupXHRStack();
	}
}
