
function init() {
// whatever stuff you need to do onload goes here.
	if (mtDropDown.isSupported()) {
		mtDropDown.initialize();
		window.status="init is over...";
	}
}

// this is a crappy example preloader. Use whichever one you want.
function loadImage(sFilename) {
	var img = new Image();
	img.src ="/scriptUTF8/menuApp/" + sFilename;
	//alert(img.src);
	return img;
}

// this is a crappy example image swapper. Use whichever you want.
function swapImage(imgName, sFilename) {
	document.images[imgName].src = sFilename;
}

//window.onload=init;
$(function(){
	init();
});
