/*
J  a  v  a  c  a  t  z

Description: customization.js

Tel: (852)29877951
Fax: (852)29879294
Email: office@javacatz.com
Website: www.javacatz.com

Created: 2007-04-20
*/

// This file is to put in any customization codes needed by CMS for different settings

function site_customization(site_id) {
	switch(site_id) {
		case "eng":
			small_fontsize = 11;
			big_fontsize = 14;
			break;
		case "chi":
			fontsizePx = 12;	// same as font-size in body
			document.body.style.fontSize = fontsizePx + "px";
			small_fontsize = 12;
			big_fontsize = 14;
			break;
		default: break;
	}
}
