
function setposition()
{
    document.all("submenu_services").style.top =327;
    document.all("submenu_services").style.left =document.body.clientWidth/2-352+104;
    //window.alert (document.body.clientWidth/2);
}

function menuMover(on)
{
    //var t
    //t = document.getElementById(id)
    //window.alert (t.style.posTop)
    if (on==1)
    {
        document.all("mainphoto").src="images/photo/main800x250.jpg";
    }
    else
    {
        document.all("mainphoto").src="images/photo/main2800x250.jpg";
    }
    setposition();
    //window.alert (id.style.posTop)
}

function ChangeStyle(id, cls)
{
	document.all(id).className=cls;
}
function mHover(table, index, cls)
{
	var t, d;
	if (document.getElementById)
		t = document.getElementById(table);
	else
		t = document.all(table);
	if (t == null) return;
	if (t.getElementsByTagName)
		d = t.getElementsByTagName("TD");
	else
		d = t.all.tags("TD");
	if (d == null) return;
	if (d.length <= index) return;
	d[index].className = cls;
}

function mliHover(imgid, pic)
{
	var img, d;
	img = document.all(imgid);
	if (img == null) return;
	img.src = "images/global/"+pic;
}

