// JavaScript Document
images = new Array(2);

images[0] = "<a href = 'http://www.ubooth.com/giftbox'><img src='/src/img/giftbox.jpg' alt='The gift box style is great for parties where gifts are exchanged' border='0'></a>";

images[1] = "<a href = 'http://www.ubooth.com/tiki'><img src='/src/img/tiki.jpg' alt='Tiki Style, The Tiki style is perfect for your next island or beach themed Weding or party' border='0'></a>";


index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

// -->