/* Changement de couleur des tags
 */
$(document).ready(function() {
$('.st-tags').each(function () {
var hue = 'rgb(' + (Math.floor((256-150)*Math.random()) + 180) + ',' + (Math.floor((256-150)*Math.random()) + 180) + ',' + (Math.floor((256-150)*Math.random()) + 180) + ')';
$(this).css("color", hue);
});
});

