Код:
<script type="text/javascript"><!--Своя картинка в каждую категорию -->
$(document).ready(function(){
myarray=new Array(
"- П О Л Е З Н О Е -", "http://s1.uploads.ru/i/TvpEQ.png",
"organization", "http://s1.uploads.ru/i/prJoO.png",
"starlight falls", "http://s1.uploads.ru/i/ZIxWY.png",
"play area", "http://s1.uploads.ru/i/uop7y.png",
"communication", "http://s1.uploads.ru/i/8oXEt.png",
"entertament", "http://s1.uploads.ru/i/pPwH5.png",
"flood&fun", "http://s1.uploads.ru/i/BlKeb.png",
"advertisment", "http://s1.uploads.ru/i/6HBdS.png",
"archive", "http://s1.uploads.ru/i/126Bv.png"      //Последний элемент без запятой!  
)
        $("#pun-index div.category h2,#pun-index #pun-stats h2").each(function (i) {
for(q=0;q<myarray.length;q++){
var cssObj = {
  "height":"80px",
  "background-color": "transparent",
  "background-image":"url("+myarray[q+1]+")",
  "background-position":"50% 50%",
  "background-repeat":"no-repeat"       //Последний элемент без запятой!
}
        if($(this).children("span").text()==myarray[q])$(this).css(cssObj);
        q++}
    });
});
</script>