﻿
<!--
// change forum markers for specific forums
// code by Stefan
ifspFMarkers = []

// add markers here, using this format
// ifspFMarkers[Forum Number] = ["No new posts marker URL", "New posts marker URL"]
// more than one can be added, each on a seperate line

ifspFMarkers[25] = ["http://i209.photobucket.com/albums/bb291/mon_iu_suju2/avatar/icon1.jpg", "http://i209.photobucket.com/albums/bb291/mon_iu_suju2/avatar/icon1.jpg"]

ifspFMarkers[2] = ["http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/m.jpg", "http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/m.jpg"]

ifspFMarkers[30] = ["http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t4.jpg", "http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t4.jpg"]

ifspFMarkers[31] = ["http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t5.jpg", "http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t5.jpg"]

ifspFMarkers[3] = ["http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t6.jpg", "http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t6.jpg"]

ifspFMarkers[7] = ["http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/33719.jpg", "http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/33719.jpg"]

ifspFMarkers[8] = ["http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t7.jpg", "http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t7.jpg"]

ifspFMarkers[9] = ["http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t8.jpg", "http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t8.jpg"]

ifspFMarkers[10] = ["http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t9.jpg", "http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t9.jpg"]

ifspFMarkers[11] = ["http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t10.jpg", "http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t10.jpg"]

ifspFMarkers[12] = ["http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t11.jpg", "http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t11.jpg"]

ifspFMarkers[20] = ["http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t12.jpg", "http://i155.photobucket.com/albums/s289/mon_iu_suju/banner/t12.jpg"]

ifspFMarkers[13] = ["http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/1203867135_4835_3.jpg", "http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/1203867135_4835_3.jpg"]

ifspFMarkers[15] = ["http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/1203867135_4841_8.jpg", "http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/1203867135_4841_8.jpg"]

ifspFMarkers[22] = ["http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/2cee16a9405e98ec1f17a251.jpg", "http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/2cee16a9405e98ec1f17a251.jpg"]

ifspFMarkers[16] = ["http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/1stconcert74.jpg", "http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/1stconcert74.jpg"]

ifspFMarkers[17] = ["http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/1203902855_DSC_030620copy.jpg", "http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/1203902855_DSC_030620copy.jpg"]

ifspFMarkers[18] = ["http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/4f5a05545a4cbc0f3b2935ed.jpg", "http://i209.photobucket.com/albums/bb291/mon_iu_suju2/TFVN/4f5a05545a4cbc0f3b2935ed.jpg"]


// no editing after this line

e = document.getElementsByTagName('TD')
for (n = 0; n < e.length; n++) {
if (e[n].className == 'row4') {
l = e[n].getElementsByTagName('A')
if (l && l.length) {
fn = l[0].search.match(/showforum=([0-9]+)$/)
if (fn && ifspFMarkers[fn[1]]) {
fmc = e[n].offsetParent.rows[e[n].parentNode.rowIndex].cells[e[n].cellIndex - 1]
ni = fmc.getElementsByTagName('IMG')
if (ni.length) {
if (ni[0].parentNode.nodeName == 'A')
ni[0].src = ifspFMarkers[fn[1]][1];
else
ni[0].src = ifspFMarkers[fn[1]][0];
}}}}}
// -->

