/* CHANGE THE hu DIRECTORY OPTION FOR SLIDESHOWS */
window.addEvent('domready', function(){
    if ( $('show') ) {
	    var show = new Slideshow('show', null, {
	    	captions: true, 
	    	controller: false, 
	    	height: 300, 
	    	hu: '/public/images/diapoIndex/', 
	    	width: 400 
	    });
	}
	
	if ( $('showJudo') ) {
	    var showJudo = new Slideshow('showJudo', null, { 
	    	captions: true, 
	    	controller: true, 
	    	thumbnails: true,
	    	height: 300, 
	    	hu: '/public/images/diapoIndex/', 
	    	width: 400 
	    });
	}
});