	$(document).ready(function() {
		activarTimer();
	});
	
	function canviaImatge() {
		var imatges = new Array('img-home-bottom1.jpg', 'img-home1.jpg', 'img-home2.jpg', 'img-home3.jpg', 'img-home4.jpg', 'img-home5.jpg');
		var numAleatori = Math.floor(Math.random()*imatges.length);
		
		$("#imatgeTextPortada").css("display","none");
		$("#imatgeTextPortada").attr("src","../img/"+imatges[numAleatori]);
		$("#imatgeTextPortada").fadeIn();
		
		activarTimer();
	}
	
	
	function activarTimer() {
		setTimeout('canviaImatge()', 8000);
	}
