function static_a(){
adnum = Math.random()*1;
adnum2 = Math.round(adnum);
//	if (adpop<10){
//	adName="home_ad0"+adnum;
//	}
//adName="home_ad0"+adnum2;
//document.write("<IMG SRC='highbanner/"+adName+".gif' WIDTH=120 HEIGHT=60 ALT='click here for fun!'>");
adPop=adnum2.toString();
	switch(adPop){
case '0': document.write("<A HREF=http://www.batsdaystore.com TARGET=_new><img src='../staticbanner/batsday-120x120-banner.gif' width=120 height=120 alt'Bats Day Scream Store'>"); break
default: document.write("<A HREF=http://www.batsdaystore.com TARGET=_new><img src='../staticbanner/batsday-120x120-banner.gif' width=120 height=120 alt'Bats Day Scream Store'>");
	}
}


// :::::::::::::::::::::::WRITTEN BY ANDREW HOLGUIN, angelus@kontrol.net
// :::::::::::::::::::::::INSTRUCTIONS::::::::::::::::::::::::::::::::
// :::::::::
// ::::::::: Decide how many ads you want to rotate.
// ::::::::: Edit the line that says "adnum = Math.random()*3",
// ::::::::: but instead of 3, use the number of ads minus 1.
// ::::::::: This will generate a number between 0 and your number,
// ::::::::: accounting for the fact that "0" is the starting position
// :::::::::
// ::::::::: Next, look for the action called "switch" and modify
// ::::::::: each case to suit your needs. Be aware of Javascript conventions
// ::::::::: regarding punctuation.

