// This document is the property of HQC Hong Kong.
// Copyright (c) 2009. HQC.
// Contact: danieltung@hqc.net
// Dec 2009
// REF: http://www.javascriptkit.com/javatutors/loadjavascriptcss.shtml
function loadjscssfile(filename, filetype){
 if (filetype=="js"){ //if filename is a external JavaScript file
  var fileref=document.createElement('script')
  fileref.setAttribute("type","text/javascript")
  fileref.setAttribute("src", filename)
 }
 else if (filetype=="css"){ //if filename is an external CSS file
  var fileref=document.createElement("link")
  fileref.setAttribute("rel", "stylesheet")
  fileref.setAttribute("type", "text/css")
  fileref.setAttribute("href", filename)
  fileref.setAttribute("media", "screen")

 }
 if (typeof fileref!="undefined")
  document.getElementsByTagName("head")[0].appendChild(fileref)
}

//css
loadjscssfile("/Scripts/yui250_reset-min.css", "css")
loadjscssfile("/Scripts/style.css", "css")
loadjscssfile("/Scripts/MenuMatic.css", "css")
//js
loadjscssfile("/Scripts/MenuMatic_0.68.3.js", "js")
//loadjscssfile("Scripts/mootools-1.2.4-core-yc.js", "js") // mootools needs to load inside HTML, some hidden init bugs

<!-- BEGIN Menu -->
var theMenu = "<ul id='nav'>\
	<li><a href='http://www.regene.net/aboutus/regene-story.html'><span style='font-size:11pt'>品牌故事</span></a></li>\
	<li><a href='http://www.regene.net/product/01_1.html'>REGENE產品</a>\
					<ul>\
						<li><a href='http://www.regene.net/product/13_1.html'>新品推介</a></li>\
						<li><a href='http://www.regene.net/product/01_1.html'>皇牌產品</a></li>\
						<li><a href='http://www.regene.net/product/02_1.html'>專案護膚系列</a></li>\
						<li><a href='http://www.regene.net/product/09_1.html'>其他系列</a></li>\
						<li><a href='http://www.regene.net/product/n01_1.html'>內服美肌產品</a></li>\
					</ul>\
	</li>\
	<li><a href='http://www.regene.net/professional/01.html'>專案顧問團隊</a>\
		<ul>\
			<li><a href='http://www.regene.net/professional/01.html'>顧問profile</a></li>\
		</ul>\
	</li>\
	<li><a href='http://www.regene.net/club/01.html'>REGENE Club</a></li>\
	<li><a href='http://www.regene.net/magazine/01.html'>傳媒推介</a></li>\
	<li><a href='http://www.regene.net/event/01.html'>活動花絮</a></li>\
	<li><a href='http://www.regene.net/recruit/index.html' title='招聘精英 - 加入REGENE，一同為女士打造完美Baby Skin'>招聘精英</a></li>\
	<li><a href='http://www.regene.net/contact/regene-shop-address.html'>聯絡我們</a>\
		<ul>\
			<li><a href='http://www.regene.net/contact/regene-shop-address.html'>REGENE 概念店</a></li>\
			<li><a href='http://www.regene.net/contact/02.html'>電郵查詢</a></li>\
		</ul>\
	</li>\
	<li><a href='http://www.regene.net/'>首頁</a></li>\
</ul>\
";
function isdefined(vvv) { return (typeof(vvv) == "undefined")? false: true; }		
window.addEvent('domready', function() {
		var menu_id = document.getElementById('theMenu');
		if (menu_id) {
			menu_id.innerHTML = theMenu;
			var myMenu = new MenuMatic();
		}

// load google, with embeded document.write!!!
loadjscssfile("/Scripts/regene_ga.js", "js");
});

