var s;
$(document).ready( function() {
  
    $(".round").corner();
    s = $("#home-slide");    
    setTimeout('slide(4)', 4000);
  
});

function slide(x){  
  $(s).attr("src", "/media/images/slides/slide-"+x+".jpg");
  x = x>=10?1:x+1;
  setTimeout('slide('+x+')', 4000);
}

if(typeof(Shadowbox) != "undefined")
Shadowbox.init();

