$(document).ready(function(){
var n = $('#slideshow img').size();
var rand = Math.floor(Math.random() * n);

$('#slideshow img').hide();
$('#slideshow img:eq(' + rand + ')').show();
});