<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin

/*
Random Content Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
*/

function random_content(){
var mycontent=new Array()
mycontent[1]='<img src="images/home_banner/pic1.jpg" border="0">'




var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()
//  End -->