window.addEvent('domready', function() {

var gallery = $$('.galls');
var currentGallery = 0;

if($('gallery_title'),$('thumb_title')){
	$('gallery_title').addEvent('click', function(){
		currentGallery --;
		if(currentGallery<0){
			currentGallery=0;
		}
		gallery.setStyle('display', 'none');
		gallery[currentGallery].setStyle('display', 'block');	
		});
		
	$('thumb_title').addEvent('click', function(){
		currentGallery ++;
		if(currentGallery>gallery.length-1){
			currentGallery=gallery.length-1;
		}
		gallery.setStyle('display', 'none');
		gallery[currentGallery].setStyle('display', 'block');
		});
}
// Chiusura del DOMREADY
});