/*
	Copyright Code Computerlove Ltd 2009-2010
	Build: 1.0.0.243
	Date: 19/01/2010 15:21:28
*/

(function($j){

	Code.registerNamespace('Website.Pages');

	Website.Pages.Homepage = {
		
		onReady: function() {
			var self = this;
		},
		
		flashRedirect: function(url){
			location.href = url;	
		},
		
		assessSplashStatus: function(){			
				
			if (Website.showSplash && Code.UserAgent.hasFlash){
				$j('body').addClass('splash');
				$j('form').addClass('hide');
			}
		}			

		
	};

	$j().ready(function() {
		Website.Pages.Homepage.onReady();
	});
	
})(jQuery);	


