 $(document).ready(function(){ 
							 bgImageTotal=20; randomNumber = Math.round(Math.random()*(bgImageTotal-1))+1;
							 imgPath=($.backstretch('/Style Library/Images/VSY-images/img-home/'+randomNumber+'.jpg'));
							 $('body').css('background-image', ('url("'+imgPath+'")'));
							 
	$("body").css("display", "none");

    $("body").fadeIn(2000);
    });

