var menuPics = new Array( 
	'menu-pic00.jpg', 
	'menu-pic01.jpg', 
	'menu-pic02.jpg', 
	'menu-pic03.jpg', 
	'menu-pic04.jpg',
	'menu-pic05.jpg',
	'menu-pic06.jpg',
	'menu-pic07.jpg', 
	'menu-pic08.jpg' 
);
var menuPicCache = new Array(menuPics.length);
var currentPic = 0;

function doMouseOver( theElement )
{
	window.status='me llamo rosa';
	//theElement.style.color = '#800000';
	theElement.style.backgroundColor = 'white';
	theElement.style.fontWeight='bold';
	theElement.style.cursor='pointer';

	var menuPic = document.getElementById( 'menuPic' );
	menuPic.src = menuPicCache[++currentPic].src;
	if( (currentPic + 1) % menuPicCache.length == 0 )
		currentPic = -1;
}

function doMouseOut( theElement )
{
	window.status='';
	theElement.style.color = '';
	theElement.style.backgroundColor = '';
	theElement.style.cursor='default';
	theElement.style.fontWeight='';
}
function doMenuClick( page )
{
	document.location = page;
}
function loadImages()
{
	for( var x = 0; x < menuPics.length; x++ )
	{
		menuPicCache[x] = new Image();
		menuPicCache[x].src = "images/" + menuPics[x];
	}
}
