Код:
<script type="text/javascript"><!--Своя картинка в каждую категорию -->
$(document).ready(function(){
myarray=new Array(
"Welcome to Mystic Falls!!!", "http://s3.uploads.ru/VyCRl.png",
"For the Game", "http://s3.uploads.ru/1iu7d.png",
"Locations", "http://s3.uploads.ru/pY0l3.png",
"Episodes", "http://s3.uploads.ru/0SQfX.png",
"Outside of the main game", "http://s2.uploads.ru/1zhgt.png",
"Relaxation Area", "http://s2.uploads.ru/e9L0X.png",
"Advertisement", "http://s2.uploads.ru/CwOgf.png",
"Chest of Drawers", "http://s2.uploads.ru/bfzmE.png" //Последний элемент без запятой!
)
$("#pun-index div.category h2,#pun-index #pun-stats h2").each(function (i) {
for(q=0;q<myarray.length;q++){
var cssObj = {
"height":"44px",
"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>