// JavaScript Document
function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<a href="brand.html"><img src="images/ad1.jpg" border="0" /></a>'
mycontent[2]='<a href="product.html"><img src="images/ad2.jpg" border="0" /></a>'
mycontent[3]='<a href="product.html"><img src="images/ad3.jpg" border="0" /></a>'
mycontent[4]='<a href="customer.html"><img src="images/ad4.jpg" border="0" /></a>'
mycontent[5]='<a href="customer.html"><img src="images/ad5.jpg" border="0" /></a>'
mycontent[6]='<a href="litigation.html"><img src="images/ad6.jpg" border="0" /></a>'

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()