

function random_content(){

var mycontent=new Array()

//specify random content below.

mycontent[0]='<img height="206" border="0" width="780" alt src="http://www.sonyclassics.com/americanhardcore/blog/images/header/header1.jpg">'
mycontent[1]='<img height="206" border="0" width="780" alt src="http://www.sonyclassics.com/americanhardcore/blog/images/header/header2.jpg">'
mycontent[2]='<img height="206" border="0" width="780" alt src="http://www.sonyclassics.com/americanhardcore/blog/images/header/header3.jpg">'
mycontent[3]='<img height="206" border="0" width="780" alt src="http://www.sonyclassics.com/americanhardcore/blog/images/header/header4.jpg">'
mycontent[4]='<img height="206" border="0" width="780" alt src="http://www.sonyclassics.com/americanhardcore/blog/images/header/header5.jpg">'
mycontent[5]='<img height="206" border="0" width="780" alt src="http://www.sonyclassics.com/americanhardcore/blog/images/header/header1.jpg">'
var ry=Math.floor(Math.random()*(mycontent.length))

document.write(mycontent[ry])
}
random_content();



