// JavaScript Document 2012 Mayan Project Random Image and Link

var randomfeatured=new Array()

 

randomfeatured[0] = "<img src='images/featured/1.png' alt='Visually Advanced Graphics' border='0'>";


function randomfeatureds(){

var add = randomfeatured[Math.floor(Math.random()*randomfeatured.length)]

return(add)

}

 

document.write( randomfeatureds() );