$(document).ready(function(){
  $(this).find("span[rel=prix_barre]").each(function(){
    
	var span_width = $(this).width() ;
	var span_height = $(this).height() ;
	var span_top = $(this).position().top ;
	var span_left = $(this).position().left ;


	
	$("<div class=\"promo_prix_barre\" style=\"height:"+((span_height/10)*6)+"px;width:"+span_width+"px;top:"+span_top+"px;left:"+span_left+"px;\"></div>").prependTo($(this)) ;


  });
});
