<!-- // hide script in older browsers

var how_many_ads = 11; // how many members in rotation
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads; // calculate random ad to display
ad +=1;

// the following will set which ad to display, depending on the variable ad

// ----------- AD 1
if (ad == 1) {
	url="http://chaotic-peace.com/disordered"; // url of member's site
	alt="disOrdered&#9734;foRtunE > momo"; // member's site name and description
	banner="http://chaotic-peace.com/disordered/images/link-18.gif"; // member's button url
	width="300"; // width of button
	height="64"; // height of button
}
// ----------- END AD 1

// ----------- AD 3
if (ad == 2) {
	url="http://shuriken.awardspace.com";
	alt="Shuriken > Kasumi";
	banner="http://i63.photobucket.com/albums/h136/GraphicsInuyasha/banndis.jpg";
	width="300";
	height="64";
}
// ----------- END AD 3

// ----------- AD 4
if (ad == 3) {
	url="http://hyuu.chanlu.org";
	alt="Blades of Eternity > Mitsuki";
	banner="http://i42.photobucket.com/albums/e349/bladesofeternity/LE/hdbanner.jpg";
	width="300";
	height="64";
}
// ----------- END AD 4

// ----------- AD 5
if (ad == 4) {
	url="http://beyondeternal.com/thefinal/";
	alt="The Final > Euri";
	banner="http://img.photobucket.com/albums/v629/euri/thefinal300x64.gif";
	width="300";
	height="64";
}
// ----------- END AD 5

// ----------- AD 7
if (ad == 5) {
	url="http://trustyourheart.co.nr";
	alt="Trust Your Heart > Arrow";
	banner="http://i26.tinypic.com/2e1xhyb.jpg";
	width="300";
	height="64";
}
// ----------- END AD 7

// ----------- AD 8
if (ad == 6) {
	url="http://crew.chaotic-peace.com";
	alt="Jugement Dernier > momo";
	banner="http://crew.chaotic-peace.com/images/link02.gif";
	width="300";
	height="64";
}
// ----------- END AD 8

// ----------- AD 9
if (ad == 7) {
	url="http://freewebs.com/japan_syndrome";
	alt="Japan Syndrome > Sashi";
	banner="http://www.freewebs.com/japan_syndrome/SYNDROME-exchbanner.gif";
	width="300";
	height="64";
}
// ----------- END AD 9

// ----------- AD 10
if (ad == 8) {
	url="http://jrl.chaotic-peace.com";
	alt="Jrock Fanlistings > momo";
	banner="http://jrl.chaotic-peace.com/images/link05.gif";
	width="300";
	height="64";
}
// ----------- END AD 10

// ----------- AD 11
if (ad == 9) {
	url="http://vanilla.silentatmosphere.com";
	alt="Kimi no Vanilla - Amanda";
	banner="http://www.silentatmosphere.com/vanilla/linkback/300x64_2.jpg";
	width="300";
	height="64";
}
// ----------- END AD 11

// ----------- AD 12
if (ad == 10) {
	url="http://hyuuga.net";
	alt="Hyuuga - Colette";
	banner="http://i264.photobucket.com/albums/ii184/hyuuga-net/Hyuuga%20net%20Buttons/banner.gif";
	width="300";
	height="64";
}
// ----------- END AD 12

// ----------- AD 13
if (ad == 11) {
	url="http://cat-heros.neocrisis.com";
	alt="Cat Heros - Thao";
	banner="http://i65.photobucket.com/albums/h201/cat_heros/bannerrotation.jpg";
	width="300";
	height="64";
}
// ----------- END AD 13


// display ad/rotation on page

document.write('<center>');
document.write('<a href=\"' + url + '\" title=\"' + alt + '\" target=\"_blank\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=\"0\" /></a><br />');
document.write('<a href=\"http://chaotic-peace.com/disordered\" target=\"_blank\">');
document.write('<img border="0" src="http://chaotic-peace.com/disordered/images/banner4.gif">');
document.write('</a>');
document.write('</center>');

// -->