<!-- // hide script in older browsers

var how_many_ads = 6; // 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://chaotic-peace.com/little";
	alt="Song: little Fat Man boy by LM.C";
	banner="http://chaotic-peace.com/images/adopt01.jpg";
	width="200";
	height="70";}

if (ad == 2) {
	url="http://chaotic-peace.com/secret";
	alt="Song: Haunted House make a secret by LM.C";
	banner="http://chaotic-peace.com/images/adopt02.jpg";
	width="200";
	height="70";}

if (ad == 3) {
	url="http://chaotic-peace.com/lollipop";
	alt="Physical: maya (physical)";
	banner="http://chaotic-peace.com/images/adopt03.jpg";
	width="200";
	height="70";}

if (ad == 4) {
	url="http://chaotic-peace.com/standing";
	alt="Song: Yellow Beauty by LM.C";
	banner="http://chaotic-peace.com/images/adopt04.jpg";
	width="200";
	height="70";}

if (ad == 5) {
	url="http://chaotic-peace.com/complex";
	alt="Album: GLITTER LOUD BOX by LM.C";
	banner="http://chaotic-peace.com/images/adopt05.jpg";
	width="200";
	height="70";}

if (ad == 6) {
	url="http://chaotic-peace.com/unique";
	alt="Music videos by LM.C";
	banner="http://chaotic-peace.com/images/adopt07.jpg";
	width="200";
	height="70";}

// 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=\"mailto:fanxshadan[at]yahoo[dot]com\" target=\"_blank\">');
document.write('<img border="0" src="http://chaotic-peace.com/images/adopt.jpg">');
document.write('</a>');
document.write('</center>');

// -->
