var myimages=new Array()

function preloadimages()
{
	for (i=0;i<preloadimages.arguments.length;i++)
	{
		var im = new Image();
		im.src=preloadimages.arguments[i];
		myimages.push(im);
	}
}

function menu_bg(obj, action)
{
	if(action=='over')
	{
		obj.style.backgroundPosition='bottom';
	}
	else if(action=='out')
	{
		obj.style.backgroundPosition='top';
	}
}
