// MOSTRAR FOTOS

function mostra(id) {
var mostrar = document.getElementById(id);
	for (var i = 1; i<=30; i++) {
		if (document.getElementById('foto'+i)) {document.getElementById('foto'+i).style.display='none';}
	}
{mostrar.style.display='block';}
}



// JavaScript Document
var obj = null;

/* MENU */
function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
	} //if
} //checkHover

$(document).ready(function() {
	$('.menu > li').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut(100);
			obj = null;
		} //if
		
		$(this).find('ul').fadeIn(100);
	}, function() {
		obj = $(this);
		setTimeout("checkHover()",200);
	});
});

