// Loading all scripts ...

	var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);
	var ie7 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 7.0") != -1);

window.onload = function(e) {
	
	// CORRECTS IE6/IE7 BEHAVIOUR
	if (ie6) {
		inputFix();
		childFix();
	}
	
	/* Members Carousel */
	$(function(){
          $("#members .jCarouselLite").jCarouselLite({
              btnNext: "#members .next",
              btnPrev: "#members .prev",
              auto: 3000,
              visible: 1
          });
	});


	/* ALaUne Carousel */
	$(function(){
          $("#aLaUne .content").jCarouselLite({
              btnNext: "#aLaUne .action .next",
              btnPrev: "#aLaUne .action .previous",
              btnGo: [".one", ".two", ".three", ".four"],
              btnGoClass: "on",
              visible: 1
          });
	});		
	
	$("#page").css('float', 'none');
	setTimeout(function() {
	$("#page").css('float', 'left');
	}, 0); // force reflow due to carousel display bug	

	//Print
	toPrint();
	
	// Fieldset help tooltips
	if ($("div.fieldset-help")) {
		fsHelp();
	}
			
}

