Aight, rather slow replaying because I don't have much free time, but
this is my site [nofollow]. I need the rotating banner to go where my current banner is in the top left. Um as for code I am completely clueless for this and clueless with javascript so I just used a basic template off the internet, here:
<SCRIPT language=JavaScript>
/*
+---------------------------------------------------------+
| Ad Simple Copyright www.YugDesign.com |
+---------------------------------------------------------+
| This program may be used and hosted free of charge by |
|anyone for personal purpose as long as this copyright |
|notice remains intact. |
+---------------------------------------------------------+
*/
var img_width = "444";
var img_height = "150";
var img_title = "Home";
var ad=new Array()
//insert here your images src
ad[0]='http://www.abyss-studios.com/media/images/banner-1.png';
ad[1]='http://www.abyss-studios.com/media/images/banner-2.png';
ad[2]='http://www.abyss-studios.com/media/images/banner-3.png';
ad[3]='http://www.abyss-studios.com/media/images/banner-4.png';
ad[4]='http://www.abyss-studios.com/media/images/banner-5.png';
var links=new Array()
//insert here your links
links[0]='http://www.abyss-studios.com';
links[1]='http://www.abyss-studios.com';
links[2]='http://www.abyss-studios.com';
links[3]='http://www.abyss-studios.com';
links[4]='http://www.abyss-studios.com';
var xy=Math.floor(Math.random()*ad.length);
document.write('<a href="'+links[xy]+'" target="_blank"><img src="'+ad[xy]+'" width="'+img_width+'" height="'+img_height+'" alt="'+img_title+'"></a>');
</SCRIPT>
Also unlike the above code says, I am not using this for ads, just a banner that preferably changes when the page is refreshed, but if its time I can live, I think.