var IMG_PATH = '/pictures/tlw_pictures/';

var needImages = Array ('menu_arrow_.gif');
var preloads = new Object;

function preloadImages()
{
    for (i=0;i<needImages.length;i++)
    {
        preloads[i] = new Image;
        preloads[i].src = IMG_PATH + needImages[i];
    }
}

function menuOver(img_id)
{
	var img_obj = document.getElementById('menu_arrow_pic_'+img_id);
	if (!img_obj) return;
	img_obj.src = IMG_PATH + 'menu_arrow_.gif';
}

function menuOut(img_id)
{
	var img_obj = document.getElementById('menu_arrow_pic_'+img_id);
	if (!img_obj) return;
	img_obj.src = IMG_PATH + 'menu_arrow.gif';
}

function menu2Over(obj)
{
	if (!obj) return;
	obj.parentNode.style.backgroundColor = '#db1103';
}

function menu2Out(obj)
{
	if (!obj) return;
	obj.parentNode.style.backgroundColor = 'transparent';
}