// Função marcar Menu Header
function menuHeader_over(indexObjectItem, numObjects, classNormal, classDestaque){
	var Object_id = '';
	var Object_id_ref = 'item_'+ indexObjectItem;
	for(i=0; i < numObjects; i++){
		Object_id = 'item_' + i;
		if(indexObjectItem != i){
			document.getElementById(Object_id).className=classNormal;
		}
	}
	document.getElementById(Object_id_ref).className=classDestaque;
}
		
//Função desmarcar Menu Header
function menuHeader_out(indexObjectItem, indexObjectAtual, numObjects, classNormal, classDestaque){
	var Object_id_ref = 'item_'+ indexObjectItem;
	document.getElementById(Object_id_ref).className=classNormal;
	Object_id_ref = 'item_'+ indexObjectAtual;
	document.getElementById(Object_id_ref).className=classDestaque;
}

// Função marcar Menu Footer
function menuFooter_over(indexObjectItem, numObjects, classNormal, classDestaque){
	var Object_id = '';
	var Object_id_ref = 'item_'+ indexObjectItem;
	for(i=0; i < numObjects; i++){
		Object_id = 'item_' + i;
		if(indexObjectItem != i){
			document.getElementById(Object_id).className=classNormal;
		}
	}
	document.getElementById(Object_id_ref).className=classDestaque;
}
//Função desmarcar Menu Footer
function menuFooter_out(indexObjectItem, indexObjectAtual, numObjects, classNormal, classDestaque){
	var Object_id_ref = 'item_'+ indexObjectItem;
	document.getElementById(Object_id_ref).className=classNormal;
	Object_id_ref = 'item_'+ indexObjectAtual;
	document.getElementById(Object_id_ref).className=classDestaque;
}

// Abrir janela capela
		function popup_imgLarge (URL){
   			window.open(URL,"_blank","width=700, height=646, resizable=1, scrollbars=1, top=0, left=0, toolbar=0,	menubar=0, statusbar=0,, location=0");
}


