jQuery(function($) {
	var submenus = $('#mainmenu li ul')
	submenus
		.not('[a[@href = "' + location.pathname.replace(/.*\//, '') + '"]]')
		.hide()
	$('#mainmenu li b')
		.css('cursor', 'pointer')
		.hover(function() {
			$(this).addClass('hover')
		}, function() {
			$(this).removeClass('hover')
		})
		.click(function() {
			if ($(this).next(':hidden').length) {
				submenus.filter(':visible').slideUp('fast')
				$(this).next().slideDown('fast')
			   } else {
               $(this).next().slideUp('fast')
       }
		})
})




function mostraFoto(foto , width_ , height_ ){
	window.open(foto, "B.D.M.", 'width='+width_+',height='+height_+',toolbar=no, location=no,status=no,menubar=no,scrollbars=yes,resizable=no');	
}