<!-- // hide script in older browsers

var how_many_ads = 3; // 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

if (ad == 1) {
	url="http://fan.chaotic-peace.com/gackt";
	alt="Camui Gackt";
	banner="http://fan.chaotic-peace.com/gackt/c/100x50-02.gif";
	width="100";
	height="50";}

if (ad == 2) {
	url="http://chaotic-peace.com/nil";
	alt="NIL";
	banner="http://chaotic-peace.com/nil/c/100x50-06.gif";
	width="100";
	height="50";}
	
if (ad == 3) {
	url="http://ayabie-fan.freesitespace.net";
	alt="Ayabie";
	banner="http://ayabie-fan.freesitespace.net/images/codes/100x50/Abiyefan3.jpg";
	width="100";
	height="50";}	

// 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://jrl.chaotic-peace.com/rotation.php">');
document.write('<img border="0" src="http://jrl.chaotic-peace.com/images/rotation.gif">');
document.write('</a>');
document.write('</center>');

// -->