/*
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://forums.redcarpetrebellion.net/index.php?showtopic=404","http://i672.photobucket.com/albums/vv84/omigoditsxty/halfwaygone.png"]
ad[1]=["http://forums.redcarpetrebellion.net/index.php?showtopic=513","http://i38.tinypic.com/5l2f7s.jpg"]

//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>")















