// image fade slideshows
$(document).ready(function() {
    $('#slideshow ul').cycle({
		fx: 'fade',
		timeout: '7000',
		speed: '2000',
		random: 1
	});
});



//Random splash image script

var theImages = new Array()

theImages[0] = 'http://www.operaanywhere.com/public/images/gallery/01.jpg'
theImages[1] = 'http://www.operaanywhere.com/public/images/gallery/02.jpg'
theImages[2] = 'http://www.operaanywhere.com/public/images/gallery/03.jpg'
theImages[3] = 'http://www.operaanywhere.com/public/images/gallery/04.jpg'
theImages[4] = 'http://www.operaanywhere.com/public/images/gallery/05.jpg'
theImages[5] = 'http://www.operaanywhere.com/public/images/gallery/06.jpg'


var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<a href="?gallery.html"><img src="'+theImages[whichImage]+'" width="185" height="100" border="1" alt="Opera Anywhere" /></a>');
}