Will man in Javascript ein Array in einer ForEach Schleife ausgeben funktioniert das so:

 

var rings = ['burning', 'development', 'pictures', 'role', 'study']
rings.forEach(function(className){
  $('.'+className+' .textwidget > div').css({'border-radius':'50px'});
});