Please login or register. Welcome to the Studio, guest!


Quick Links:


newBookmarkLockedFalling

Chris

Chris Avatar

******
Head Coder

19,519


June 2005
<script type="text/Javascript">
// Random Banner by Chris
// Do not redistribute without permission of the creator
var banners = [];


// EDIT HERE
banners.push("URL OF BANNER"); // Repeat line for more
banners.push("URL OF BANNER");
banners.push("URL OF BANNER");
banners.push("URL OF BANNER");

// END EDITING

document.getElementById("menu_logo").innerHTML = "<img src='"+banners[(Math.floor(Math.random()*banners.length))]+"' />";
</script>


Module should go in your global headers. The editing should be self explanatory... URL OF BANNER should be a link to one of the banners.

newBookmarkLockedFalling