/* <td>-Background bei onMouseOver ändern: Navigation */
function Over(area) {
	if (!area.contains(event.fromElement)) {
		area.bgColor = '#E8E8E8';
		area.style.cursor = 'hand';
	}
}
function Out(area) {
	if (!area.contains(event.toElement)) {
		area.bgColor = 'white';
		area.style.cursor = 'hand';
		window.status="";
	}
}
function Click(area) {
	if(event.srcElement.tagName=='TD') {
		area.children.tags('A')[0].click();
	}
}



/* Box Menu Direktweiterleitung */

function go()
{
	box = document.forms[0].navi;
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}


/* PicRemote */

function change(change_picture_name,new_picture_name)
{
	window.document[change_picture_name].src = "/images/products/"+new_picture_name+".jpg";
}