
jQuery('document').ready(function() {
    fleuranceSliderInit();
});

function fleuranceSliderInit() {
	
	var scrollHeight   = jQuery('#slider-full-block').height();
	
	jQuery('#slider-full-block').find('.panneau_droite .slider-item').each(function() {
		var slideId    = this.id.replace('slider-item-', '');
		var marginTop  = slideId * scrollHeight - 27;
		var offerPanel = jQuery(this).find('.offre_product');
		
		offerPanel.removeClass('no-display');
		
		if (offerPanel.hasClass('empty') || offerPanel.hasClass('bottom')) {
			marginTop = marginTop + scrollHeight - 110;
		}
		
		offerPanel.css({'marginTop': marginTop + "px"});
		
	});
		
    jQuery('#slider-full-block .panneau_gauche li').mouseenter( function() {
    	
    	var currentSlide   = jQuery('.slider-item.current').get(0);
    	var currentSlideId = currentSlide.id.replace('slider-item-', '');
    	var targetSlideId  = this.id.replace('slider-li-', '');
    	var targetSlide    = jQuery('#slider-item-' + targetSlideId).get(0);
    	    	
    	if (targetSlideId != currentSlideId) {
    		var currentScrollHeight = (targetSlideId) * scrollHeight;
    		
    		jQuery('#slider-full-block').find('.panneau_droite').stop();
    		jQuery('#slider-full-block').find('.panneau_droite .slider-item').removeClass('current');
    		jQuery(targetSlide).addClass('current');
    		jQuery('#slider-full-block').find('.panneau_droite').animate({'scrollTop': currentScrollHeight + "px"});
    	}
    	
    	jQuery(this.parentNode).find('li').removeClass('active');
    	jQuery(this).addClass("active");
    });

}

