/// <reference path="jquery.intellisense.js" />


/*
This script should only be run on the index page to allow loading for the 
prototype / mootools accordion.

Google should bypass this and display the page correctly for SEO.
*/


(function($){

	$(window).bind('load',function(){
	    var IE6 = false;
	    if ($.browser.msie && ($.browser.version == 6)) IE6 = true;
	    
	    if (IE6) $('body').css('paddingLeft', '0');
	    
		setTimeout(function(){
		    $('body').addClass('blue');
		    if (IE6) $('body').css('paddingLeft', '10');
		
		    $('#overlay').fadeOut(function() {
				$('body').css('overflow', 'auto');
			});
		}, 500);
	});
	
})(jQuery);
