var IE6=(typeof document.documentElement.style.maxHeight != "undefined")?false:true;

var js_arr = new Array();
js_arr.push(
	"jquery.js",
	"jquery.rollover.js",
	"common.js"
);

importJS(js_arr);

function importJS(filePath){
	var jsDir = "/shared/js/";
	if(typeof(filePath)=="object"){
		if(filePath.length>1){
			for (var i in filePath){
				document.write('<script type="text/javascript" src="'+jsDir+filePath[i]+'"></script>');
			}
		}else {
			document.write('<script type="text/javascript" src="'+jsDir+filePath[0]+'"></script>');
		}
	}else{
		document.write('<script type="text/javascript" src="'+jsDir+filePath+'"></script>');
	}
}