/**
 * @author lpillonel
 */

var TimeLine = new Class({

	Implements : Options,
	
	initialize : function(){
		if($('category43') && $('category43').getParent().hasClass('selected')){
			this.build();
		}
	},

	build : function(){
		$$('.pageinfo h1').set('html','Palmarès');
		var element = document.body.getElement('div.date h2');
		this.timeLine = document.body.getElement('.submenu').clone();
		this.timeLine.setProperty('id', 'timeline').setStyle('margin', '').removeClass('two-cols').inject(element, 'before');
		
		//remove id
		this.timeLine.getChildren().each(function(li){
			li.setProperty('rel', li.getFirst().getProperty('id'));
			li.getFirst().removeProperty('id');
		});
		
	}
});
