function random_image(image_prefix, image_total) {

    var random = 1 + Math.floor(Math.random() * image_total);

    return '<img alt="" src="' + image_prefix + random + '.jpg" />';
}