var icons = new Array();
icons.push (["Office Management","http://i186.photobucket.com/albums/x50/HGS-BoxOffice/Forum%20Category%20Icon/DirectorChair.png"]);
icons.push (["Green Room","http://i186.photobucket.com/albums/x50/HGS-BoxOffice/Forum%20Category%20Icon/Door.png"]);
icons.push (["Back Stage","http://i186.photobucket.com/albums/x50/HGS-BoxOffice/Forum%20Category%20Icon/HotDog.png"]);
icons.push (["Front Stage","http://i186.photobucket.com/albums/x50/HGS-BoxOffice/Forum%20Category%20Icon/Popcorn.png"]);
icons.push (["Publicity","http://i186.photobucket.com/albums/x50/HGS-BoxOffice/Forum%20Category%20Icon/Publicity.png"]);
icons.push (["Lights, Camera, Action!","http://i186.photobucket.com/albums/x50/HGS-BoxOffice/Forum%20Category%20Icon/Video.png"]);

$('.ForumCategoryHeader img').css({'vertical-align':'middle','padding-right':'4px'});

$(".ForumCategoryHeader").each(function() {
 for ( var j=0; j < icons.length; j++ ) {
  if ($(this).html().match(icons[j][0])) {
   $(this).html("<img src='"+icons[j][1]+"'>"+$(this).html());
  }
 }
});