function reloadImage(){
var date = new Date();
var canvas = document.getElementById('slideshow_small');
var img = document.createElement('img');
img.onload=function(evt){
canvas.src=this.src;
canvas.width=this.width;
canvas.height=this.height;
setTimeout("reloadImage()",15000);
}
img.src='http://kamery.kruszer.pl/get.php?id=' + date.getTime();
return true;
}
reloadImage();
