/*
Rotating Ads per Page Load
by iFusion - http://forum.ifcode.com
Used by RCR
*/

//Define the ads' URL and Image below

var ad = []
ad[0]=["http://lightsmb.com/","http://i36.tinypic.com/do2xvs.jpg"]
ad[1]=["http://fauxism.org/","http://i49.tinypic.com/10fajvk.png"]


//Do not edit anything below this line

x = Math.floor(Math.random()*ad.length)

document.write("<center>")
document.write("<a href='" + ad[x][0] + "'>")
document.write("<img src='" + ad[x][1] + "' />")
document.write("</a>")
document.write("</center>")






































