function randomImg(imgPath) {
    var i = parseInt(Math.random()*13)+1;
    document.write('<img src="' + imgPath + i +'.jpg" />');
}
