/*
Random Content Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
*/

function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<b>You\'ve gotta see:<br /><a href="/store/gemstones/index.html"><img src="/rotators/gemstone.jpg" border="0" alt="Gemstone Candles"><a/></b>'
mycontent[2]='<b>You\'ve gotta see:<br /><a href="/store/littlemiracles/index.html"><img src="/rotators/littlemiracles.jpg" border="0" alt="Little Miracles"><a/></b>'
mycontent[3]='<b>You\'ve gotta see:<br /><a href="/store/holybears/tooblessed.html"><img src="/rotators/too_blessed.jpg" border="0" alt="Too Blessed to Be Stressed Bear"><a/></b>'
mycontent[4]='<b>You\'ve gotta see:<br /><a href="/store/worrybox/index.html"><img src="/rotators/worrybox.jpg" border="0" alt="Your Worry Box"><a/></b>'
mycontent[5]='<b>You\'ve gotta see:<br /><a href="/store/kitchenkotta/index.html"><img src="/rotators/kottas.jpg" border="0" alt="Kitchen Kottas"><a/></b>'


var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()




