
function randomImg(){

    var picture = document.getElementById('picture');
    
    var nrOfPictures = 6;
    
    var imgNr = (Math.floor((Math.random()*nrOfPictures)+1));
    
    picture.src = "/uploads/images/paginafoto/img" + imgNr + ".jpg";

}

