

var images = {
	
		'home' : ['../images/home/home-1.jpg' ,'../images/home/home-2.jpg' ,'../images/home/home-3.jpg' ,'../images/home/home-4.jpg' ,'../images/home/IMG_0274.JPG' ,'../images/home/IMG_0276.JPG' ,'../images/home/IMG_0277.JPG' ,'../images/home/IMG_0278.JPG' ,'../images/home/IMG_0279.JPG' ,'../images/home/IMG_0280.JPG' ,'../images/home/IMG_0281.JPG'],
	
		'other' : ['../images/other/other-1.jpg' ,'../images/other/other-10.jpg' ,'../images/other/other-11.jpg' ,'../images/other/other-2.jpg' ,'../images/other/other-3.jpg' ,'../images/other/other-4.jpg' ,'../images/other/other-5.jpg' ,'../images/other/other-6.jpg' ,'../images/other/other-7.jpg' ,'../images/other/other-8.jpg' ,'../images/other/other-9.jpg' ,'../images/other/foto-1.JPG'],
	
		'rooms' : ['../images/rooms/IMG_0285.JPG' ,'../images/rooms/IMG_0286.JPG' ,'../images/rooms/IMG_0288.JPG' ,'../images/rooms/IMG_0289.JPG'],
	
		'vajont' : ['../images/vajont/diga.jpg'],
	
};

function loadRandomPanoramicImage() {
	folderName = $('#content').attr('data-image-folder');
	$('#panoramic-image').css({
		backgroundImage : 'url(' + images[folderName][Math.floor(Math.random() * images[folderName].length)] + ')'
	});
}

$(document).ready(function() {
	loadRandomPanoramicImage();
});



