function fixBugHideShowWebKit(element)
{
	var $wrapper = $('> div', element),
		$slider = $wrapper.find('> ul'),
		$items = $slider.find('> li:not(.cloned):not(.empty)'),
		$single = $items.filter(':first'),            
		singleWidth = $single.outerWidth(),       
		items_o=$items.length;

	$wrapper.scrollLeft(singleWidth * (items_o));
}
$.fn.infiniteCarousel = function () {

    function repeat(str, num) {
        return new Array( num + 1 ).join( str );
    }
  
    return this.each(function () {
        var $wrapper = $('> div', this).css('overflow', 'hidden'),
            $slider = $wrapper.find('> ul'),
            $items = $slider.find('> li'),
            $single = $items.filter(':first'),            
            singleWidth = $single.outerWidth(), 
            visible = Math.round($wrapper.innerWidth() / singleWidth), 
			// note: doesn't include padding or border
            pages = Math.ceil($items.length / visible),            
			pages_o=$items.length / visible,
			items_o=$items.length,
            currentPage = pages_o;
			
        // 1. Pad so that 'visible' number will always be seen, otherwise create empty items
		if (visible && ($items.length % visible) != 0 && $items.length<visible) {
			items_o=$items.length;
			pages_o=pages;
			$slider.append(repeat('<li class="empty" />', visible - ($items.length % visible)));
			$items = $slider.find('> li');
		}

        // 2. Top and tail the list with 'visible' number of items, top has the last section, and tail has the first
        $items.filter(':first').before($items.slice(- (items_o)).clone().addClass('cloned'));
        $items.filter(':last').after($items.slice(0, visible).clone().addClass('cloned'));
        $items = $slider.find('> li'); // reselect
        
        // 3. Set the left position to the first 'real' item
        $wrapper.scrollLeft(singleWidth * (items_o));
        
        // 4. paging function
        function gotoPage(page) {
            var dir = page < currentPage ? -1 : 1,
                n = Math.abs(currentPage - page),
                left = singleWidth * dir * visible * n;
			
            $wrapper.filter(':not(:animated)').animate(
			{
					scrollLeft : '+=' + left
				}, 
				500, 
				function () 
				{
					if (page <= 0.05 && page>=-0.05) {
						$wrapper.scrollLeft(singleWidth * visible * pages_o);
						page = pages_o;
					// activer cette ligne si le caroussel pose des problemes avec un visible>=5
					//} else if (parseInt(page*100) > parseInt((pages_o+(items_o-visible)*(1/visible)+(visible-1)/visible)*100)) {
					} else if (page > (pages_o+(items_o-visible)*(1/visible)+0.75)) {
						$wrapper.scrollLeft(singleWidth * (items_o));
						// reset back to start position
						page = pages_o;
					} 
					currentPage = page;
				}
			);                
            return false;
        }
        //a changer 
        $wrapper.after('<a class="arrow back" title="'+f_get_txt('back')+'">&lt;</a><a class="arrow forward" title="'+f_get_txt('next')+'">&gt;</a>');
        //$wrapper.after('<a class="arrow back" title="Voir les actualités précédentes">&lt;</a><a class="arrow forward" title="Voir les actualités suivantes">&gt;</a>');
        
        // 5. Bind to the forward and back buttons
        $('a.back', this).click(function () {
            return gotoPage(currentPage - 1/visible);     
        });
		
        // $('a.back', this).focus(function () {
            // return gotoPage(currentPage - 1/visible);     
        // });
        
		$('a.forward', this).click(function () {
            return gotoPage(currentPage + 1/visible);
        });
        // $('a.forward', this).focus(function () {
            // return gotoPage(currentPage + 1/visible);
        // });
        // create a public interface to move to a specific page
        $(this).bind('goto', function (event, page) {
            gotoPage(page);
        });
    });  
};
