var theImages = new Array('b1','l1','b2','l2','b3','l3','b4','l4','b5','l5','b6','l6','b7','l7','b8','l8','b9','l9','b10','l10');
var p = theImages.length;
function showImage(){
	
	theImages.sort( randOrd );
	for (i = 0; i < p; i++){
	   document.write('<div class="anime hide" style="height:248px" ><img src="styles/images/site_images/rotater/'+theImages[i]+'.jpg" alt="'+theImages[i]+'" width="466" height="248" /></div>');
	}
}
function randOrd(){
	return (Math.round(Math.random())-0.5); 
}
