<!--
	function preloadimages(){
		for (i=0;i<preloadimages.arguments.length;i++){
			preloaded[i]=new Image();
			preloaded[i].src= preloadimages.arguments[i];
		}
	}
	
	if (document.images)
	{
		var preloaded = [];
		preloadimages("/library/media/images/logo-t-system-white.gif",
		"/library/media/images/navigation-separator.gif",
		"/library/media/images/button-side-end-off.jpg",
		"/library/media/images/button-side-end-on.jpg",
		"/library/media/images/spacer.gif",
		"/library/media/images/pixel-blank.gif",
		"/library/media/images/pixel-black.gif");		
	}

	function init() {
		if (mtDropDown.isSupported()) {
			mtDropDown.initialize();
		}
	}
	
	function over( titleID, imageID ) {
		if (navigator.appName == "Netscape") {
			if (document.getElementById(titleID)) {
				document.getElementById(titleID).style.color="#CC0000";
			}
		}
		else {
			if (document.all[titleID]) document.all[titleID].style.color="#CC0000";			
		}
	}
	
	function out( titleID, imageID ) {
		if (navigator.appName == "Netscape") {
			if (document.getElementById(titleID)) {
				document.getElementById(titleID).style.color="#333333";
			}
		}
		else {
			if (document.all[titleID]) document.all[titleID].style.color="#333333";
		}
	}
//-->