//This code is modified from the Bomb Shelter Comics Member Script

var host = new Array("eyeskream.com","flyingferret.com","futurepig.com","joefunnies.com","erikbouchard.com")

		var boximages=new Array()

		//specify random images below. You can have as many as needed

		boximages[1]="tallbanner_ff.gif"
		boximages[2]="tallbanner_fp.jpg"
           boximages[3]="tallbanner_esmag.gif"
		
		var bannerimages=new Array()

		//specify random images below. You can have as many as needed

		bannerimages[1]="longbanner_ff.gif"
           bannerimages[2]="longbanner_fp.jpg"
		bannerimages[3]="ESMagbanner.gif"

		//specify corresponding links below

		var imagelinks=new Array()

		imagelinks[1]="www.flyingferret.com"
		imagelinks[2]="www.futurepig.com"
		imagelinks[3]="indyplanet.com/store/product_info.php?products_id=1005"

function newsbox(){

 for(var i=0; i<host.length; i++){
	if((window.location.hostname == host[i]) || (window.location.hostname == "www."+host[i])){


		var ry=Math.floor(Math.random()*boximages.length)

		if (ry==0)

			ry=1
			document.write('<table border="0" cellpadding="0" cellspacing="3" width="155" style="background-color:black; border:1px solid black"><tr><td><a href="http://www.eyeskream.com/forum/"><img src="http://www.flyingferret.com/banners/tallbanner_esheader.gif" border="0"></a></td></tr><tr><td>');
			document.write('<a href="http://'+imagelinks[ry]+'/"><img src="http://www.flyingferret.com/banners/'+boximages[ry]+'" border=0 width=180 height=350></a>');
			document.write('</td></tr></table>');		
		}
				
	else{
	}
 }
}


function banner(){
for(var i=0; i<host.length; i++){
  if((window.location.hostname == host[i]) || (window.location.hostname == "www."+host[i])){

      //specify corresponding links below

      var ry=Math.floor(Math.random()*bannerimages.length)

      if (ry==0)

          ry=1
          document.write('<table cellpadding="0" cellspacing="0" width="468px" height="60px" style="background-color:black;border:2px solid black">')
          document.write('<tr><td height="60">')
          document.write('<a href="http://www.eyeskream.com/"><img src="http://www.flyingferret.com/banners/longbanner_esheader.gif" border="0" title="Eyeskream Webcomic Creators Group" /></a></td><td><a href="http://'+imagelinks[ry]+'"'+'><img src="http://www.flyingferret.com/banners/'+bannerimages[ry]+'" border="0" width="400" height="60"></a>')
          document.write('</td></tr></table>')

      }
        else{
  }
}
} 

