/**
 * @author vvanghelue
 */ 
window.addEvent('domready', function() {
	var slide = new noobSlide({
		box: $('noobslide_box'),
		items: $$('#noobslide_box .bloc_produit'),
		autoPlay: true,
		fxOptions:{duration:1000,wait:false},
		interval: 5000,
		size: 700,
		addButtons: {
			previous: $('btn_prev'),
			next: $('btn_next')
		}
	});
	$$('.contenu_categorie').setStyle('opacity', '0');
	$$('.bloc_categorie').addEvent('mouseenter', function(event){
		this.setStyle('background-position', 'center bottom');	
		this.getChildren('div').fade('in');
	});
	$$('.bloc_categorie').addEvent('mouseleave', function(event){
		this.setStyle('background-position', 'center top');	
		this.getChildren('div').fade('out');
	});	
});

