<!--

/*
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]='<IMG SRC="images/BM-WEB-Home-LR_14_1.jpg">'
mycontent[2]='<IMG SRC="images/BM-WEB-Home-LR_14_2.jpg">'
mycontent[3]='<IMG SRC="images/BM-WEB-Home-LR_14_3.jpg">'


var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()
//-->