window.addEvent('domready', function(){
	$('realisation_1').set('tween', {
			duration: 1250,
			transition: Fx.Transitions.Bounce.easeOut
		}).tween('top', '0px');
	
	$('realisation_2').set('tween', {
			duration: 1750,
			transition: Fx.Transitions.Bounce.easeOut
		}).tween('top', '0px');
	
	$('realisation_3').set('tween', {
			duration: 1250,
			transition: Fx.Transitions.Bounce.easeOut
		}).tween('top', '0px');
	
	$('realisation_4').set('tween', {
			duration: 1500,
			transition: Fx.Transitions.Bounce.easeOut
		}).tween('top', '0px');
	
	$('realisation_5').set('tween', {
			duration: 1000,
			transition: Fx.Transitions.Bounce.easeOut
		}).tween('top', '0px');
	
	$$('#news .paging a').addEvents({
		'click': function(){
			$$('#news .paging a.active').removeClass('active');
	    	this.addClass('active');
	    	$$('#news .news.active').removeClass('active');
	    	$$('#news .news#news_'+this.innerHTML).addClass('active');
		}
	});
	$$('#news').getElement('.news').addClass('active');
});
