function Manage(){
	// gestion du survol sur les catégories	
	if($('categories')){		
		$$('#categories A').each(function(e){ 
			Event.observe(e, 'mouseover', function(){ 
				$('currentCat').update(e.readAttribute('title'));
			});
			Event.observe(e, 'mouseout', function(){ 
				$('currentCat').update('');
			});
		});
	}
	
	// slideshow réalisations
	if($('photo')){
		Event.observe($('photo'), "click", function(e){
			new Effect.Move('photo', { x: -200, y: 0, mode: 'relative',  transition: Effect.Transitions.linear});								  
		});		
	}
	
	
	
}

Event.observe(window, "load", Manage);