// JavaScript Document

<!-- Hide from old browsers

var imagenumber = 2 ;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;


images = new Array
images[1] = "../src/img/elegant.jpg"
images[2] = "../src/img/antique.jpg"

var image = images[rand1]


links = new Array
links[1] = "http://www.ubooth.com/elegant"
links[2] = "http://www.ubooth.com/antique"

var link = links[rand1]

var Quotation=new Array() 

Quotation[1] = "ELEGANT STYLE This rich elegant style will bring a touch of class to any prty or event.";
Quotation[2] = "ELEGANT STYLE This rich elegant style will bring a touch of class to any prty or event.";


document.write('<A HREF="' + link + '"><IMG SRC="' + image + '" border="0"></a>')