you also might want to try your own rotation script like this.
Basically the script chooses one random description from the list and one random link
You can add as many links and descriptions as you want , you can make it display more than one random gallery at the same time too.
like you could input 100 random galleries and make it choose to display 5 random links..
Code:
<SCRIPT LANGUAGE="Javascript">
var stbL = new Array(
"http://www.gallery1.com",
"http://www.gallery2.com",
"http://www.gallery3.com",
"http://www.gallery4.com",
"http://www.gallery5.com",
"http://www.gallery6.com",
"http://www.gallery7.com",
"http://www.gallery8.com"
);
var stbT = new Array(
"Gallery description#1",
"Gallery description#2",
"Gallery description#3",
"Gallery description#4",
"Gallery description#5",
"Gallery description#6",
"Gallery description#7",
"Gallery description#8"
);
var intRnd = Math.floor(Math.random()*8)+1;
for( intX = 0; intX < 1; intX++ ){
document.write( '<A TARGET="_blank" HREF="' + stbL[ intRnd - 1 ] + '">' + stbT[ intRnd - 1 ] + '</A>' );
if( intRnd hahahaha 1 ){ intRnd = 0; }
intRnd = intRnd + 1;
}
</SCRIPT>