// JavaScript Document

function on(menu_name){
	if (document.images) 
		{
		 document.getElementById(menu_name).className = 'item_o';
		 }
		
}
function off(menu_name){
	if (document.images) 
		{
		 document.getElementById(menu_name).className = 'item';
		 }
		
}