<!--
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ** the images for arrow-button rollover...
wind1		= new Image;
wind1.src	="/local_icons/poweredby1.jpg";
wind2		= new Image;
wind2.src	="/local_icons/poweredby2.jpg";
wind3		= new Image;
wind3.src	="/local_icons/poweredby3.jpg";
wind4		= new Image;
wind4.src	="/local_icons/poweredby4.jpg";

butn_home_over		= new Image;
butn_home_over.src	="http://www.voffice.ws/vlayout/web_ivv_butn_home_over.jpg";
butn_home_ready		= new Image;
butn_home_ready.src	="http://www.voffice.ws/vlayout/web_ivv_butn_home_ready.jpg";
butn_about_over		= new Image;
butn_about_over.src	="http://www.voffice.ws/vlayout/web_ivv_butn_about_over.jpg";
butn_about_ready	= new Image;
butn_about_ready.src	="http://www.voffice.ws/vlayout/web_ivv_butn_about_ready.jpg";
butn_appsvcs_over	= new Image;
butn_appsvcs_over.src	="http://www.voffice.ws/vlayout/web_ivv_butn_appsvcs_over.jpg";
butn_appsvcs_ready	= new Image;
butn_appsvcs_ready.src	="http://www.voffice.ws/vlayout/web_ivv_butn_appsvcs_ready.jpg";
butn_contact_over	= new Image;
butn_contact_over.src	="http://www.voffice.ws/vlayout/web_ivv_butn_contact_over.jpg";
butn_contact_ready	= new Image;
butn_contact_ready.src	="http://www.voffice.ws/vlayout/web_ivv_butn_contact_ready.jpg";
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ** the function used to update the named table cells...
var timer_count	=1;
var end_count	=1;
var table_id="table1";
var cmd="anim_image('0');";
var table_no="1";
var butn_status="over";
var butn_id="home";

function menu_butn(butn_id,butn_status)
{
if (butn_id == "home")
	{
	document.home.src=eval("butn_" + butn_id + "_" + butn_status + ".src");
	}
if (butn_id == "about")
	{
	document.about.src=eval("butn_" + butn_id + "_" + butn_status + ".src");
	}
if (butn_id == "appsvcs")
	{
	document.appsvcs.src=eval("butn_" + butn_id + "_" + butn_status + ".src");
	}
if (butn_id == "contact")
	{
	document.contact.src=eval("butn_" + butn_id + "_" + butn_status + ".src");
	}
}
function anim_image(timer_count)
	{
	timer_count++
	end_count++
	cmd="anim_image(" + timer_count + ");";
	table_id= "table" + table_no;
	if ((timer_count >= 1) && (timer_count <= 4))
		{
		document.table1.src=eval("wind" + timer_count + ".src");
		timerTwo=window.setTimeout(cmd,500);
		}
	else
		{
		if (end_count >= 20)
			{
			}
		else
			{
			timer_count=0;
			anim_image(timer_count);
			}
		}
	}
// ** after this (end of js) define the tables for arrows... -->
