/**
 	@fileoverview F6 Framework
	@author FullSIX Technologies DFO IT
	@version 1.0
*/

// Create the namespace and the conf vars
var F6 = {
	version : "1.0",
	basePath: "/js/",
	minimumFlashVersion: "8",
	deferFuntion: /MSIE 6/.test(navigator.userAgent) ? "load" : "domready",
	heightStyle : /MSIE [56]/.test(navigator.userAgent) ? "height" : "minHeight",
	isQuirks : /MSIE/.test(navigator.userAgent) && document.compatMode ? true : false,
	isIE6 : /MSIE 6/.test(navigator.userAgent) ? true : false,
	checkCapabilities: false, // active la verification des capacites du navigateur, et l'instanciation conditionnelle des modules (cf Module.check)
	debugMode : false // active le trace
	
	
	
};


// en prod, utiliser le fichier _default.js, apres concatenation
F6.Import = function (scriptName, noCache){
	var cache = noCache ? "?noCache=" + (new Date()).getTime() : "";
	var ext = /\./.test(scriptName) ? "" : ".js";
	document.write('<script type="text/javascript" charset="utf-8" src="' + F6.basePath + scriptName + ext + cache + '"></script>');
};

// appel du core, a ne pas changer
//F6.Import("mootools");
F6.Import("FogManager");
F6.Import("custom");
F6.Import("cufon");
F6.Import("bold.font.js");
F6.Import("light.font.js");
F6.Import("roman.font.js");

