function randOrd(){
	return (Math.round(Math.random())-0.5);
}
var theImages = new Array()
theImages[0] = 'images/error/toomany1.jpg';
theImages[1] = 'images/error/toomany2.jpg';
theImages[2] = 'images/error/toomany3.jpg';
theImages.sort(randOrd);
$(document).ready(function(){
	$(document).bgStretcher({
		images: theImages, imageWidth: 1400, imageHeight: 900, nextSlideDelay: 15000, slideShowSpeed: 500
	});
});
