var cellier = {};

$(document).ready(function(){
  
cellier.editorial = $('#editorial_block_center');
cellier.editorial.find('a[href="http://www.prestashop.com"]').remove();
cellier.editorial.find('.rte a').each(function(){
  $(this).appendTo(cellier.editorial);
});

if (cellier.editorial.find('a').length > 1) {
  cellier.editorial.find('a:visible:first').fadeOut(1);
  setTimeout( "slideSwitch()", 5000 );
}

});


function slideSwitch() {
  var parent = cellier.editorial;
  var next = parent.find('a:visible').fadeOut(2000).next();
  if (!next.length == 1)
    next = parent.find('a:first');
  next.fadeIn(2000);
  t_top_rotator = setTimeout('slideSwitch()', 7000);
}
