/**
 * Initializes document
 */
$(document).ready(function() {

   var pathEntries = window.location.pathname.split("/");
   var imagePath = (pathEntries.length - 1) > 1 ? "../images/products/" : "images/products/";
   var imageList = new Array("Img_26739.jpg", "Img_26705.jpg", "Img_26742.jpg");
   var randomIndex = Math.floor(Math.random() * 3); /* Size of array */
   $("#slideshow").attr("src", imagePath + imageList[randomIndex]);
});

