/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function(){

    bgImageTotal=10;
    randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1;
    imgPath=('/content/fileadmin/user_upload/simav/homepage/'+randomNumber+'.jpg');
    $('#main_container').css('background-image', ('url("'+imgPath+'")'));

});


