
Interna = {
	
	protofade : null,
	
	carregar : function() {
        
        $$('#lista_menu #inicio')[0].className = "selecionado";
		
        // Gera a seleção de imagens do início
        this.protofade = new Protofade('protofade', {Delay: 5.0, Random:false, Slideshow:true, Duration:2});
        
        // Mostra as outras imagens escondidas
        $$('#protofade .img_grande').each(function(obj){
        	$(obj).style.visibility = 'visible';
        });
        
        // Mostra o link da foto em vermelho
        $$('#bloco_centro a').each(function(e){
        	$(e).observe('mouseover', function(event){
	        	var objeto = Event.element(event);
	        	objeto.style.color = '#00c';
	        });
	        
	        $(e).observe('mouseout', function(event){
	        	var objeto = Event.element(event);
	        	objeto.style.color = '#444';
	        });
        });
        
    }
	
}

