
$(function() {
	
	$('.scroll-pane').jScrollPane({showArrows:true});
});



	var imatgesPortada = new Array(
			'fotografia-de-fons.jpg',
			'fotografia-de-fons6.jpg',
			'fotografia-de-fons7.jpg',
			'fotografia-de-fons8.jpg',
			'fotografia-de-fons9.jpg'
		);


	jQuery(document).ready(function(){		
		if(jQuery("#envoltori").attr("class") == "fons-restaurant") activarTimer();
		preloadImatges();			
	});
		
	function activarTimer() {
		setTimeout('canviaImatge()', 8000);
	}
	
	function canviaImatge() {		
		var randomnumber=Math.floor(Math.random()*imatgesPortada.length)
		
		jQuery("#envoltori").css({'background' : 'black url('+$("#imatge-"+randomnumber).attr("src")+') no-repeat scroll 0 0'});
		activarTimer();
	}
	
	function preloadImatges() {
		var i;
		
		for(i in imatgesPortada){
			jQuery("#envoltori").append('<img id="imatge-'+i+'" src="../imatges/'+imatgesPortada[i]+'" style="display:none" />');
		}
	}
