<!--
image1 = new Image(); //preload mouseover images to stop delay
image1.src = "/images/thailand-lang-top-mouseover.gif";

image2 = new Image();
image2.src = "/images/thailand_lang_bot_mouse3.gif";

function changeImage(imageName, imageSource) { 
document.images[imageName].src = imageSource; 
}
function mouseOverTop() { 
document.images['thaiTopLink'].src = '/images/thailand-lang-top-mouseover.gif'; 
}
function mouseOutTop() { 
document.images['thaiTopLink'].src = '/images/thailand-lang-top.jpg'; 
}
function mouseOverContact() { 
document.images['thaiContactLink'].src = '/images/thailand_lang_top_mouseover2.gif'; 
}
function mouseOutContact() { 
document.images['thaiContactLink'].src = '/images/thailand_lang_top2.gif'; 
}


 //this creates create a new FSmenu object
var listMenu = new FSMenu('listMenu', true, 'display', 'block', 'none');

listMenu.showDelay = 200;
listMenu.switchDelay = 200;
listMenu.hideDelay = 500;
listMenu.cssLitClass = 'highlighted';
listMenu.animInSpeed = 0.5;
listMenu.animOutSpeed = 0.5;

listMenu.animations[listMenu.animations.length] = FSMenu.animSwipeDown;

var arrow = null;
if (document.createElement && document.documentElement)
{
 arrow = document.createElement('span');
 arrow.appendChild(document.createTextNode('»'));
 arrow.className = 'subind';
}
addEvent(window, 'load', new Function('listMenu.activateMenu("listMenuRoot", arrow)'));	 

//-->

