
/* - slideshow.js - */
// http://www.farmaremma.it/portal_javascripts/slideshow.js?original=1
var slideshowSpeed=5000;var photos=[{"image":"farmaremma6.jpg","url":""},{"image":"farmaremma7.jpg","url":""},{"image":"farmaremma8.jpg","url":""},{"image":"farmaremma9.jpg","url":""},{"image":"farmaremma10.jpg","url":""}];jq(document).ready(function($){jq('#portal-header').prepend('<div id="headerimgs"><div id="headerimg1" class="headerimg"></div><div id="headerimg2" class="headerimg"></div></div>');var imagewidth=jq('#visual-portal-wrapper').width();jq('.headerimg').css({"width":"100%"});var activeContainer=1;var currentImg=0;var animating=false;var navigate=function(direction){if(animating){return}
if(direction=="next"){currentImg++;if(currentImg==photos.length+1){currentImg=1}} else{currentImg--;if(currentImg==0){currentImg=photos.length}}
var currentContainer=activeContainer;if(activeContainer==1){activeContainer=2} else{activeContainer=1}
showImage(photos[currentImg-1],currentContainer,activeContainer)};var currentZindex=10000;var showImage=function(photoObject,currentContainer,activeContainer){animating=true;if(currentZindex==10){currentZindex=10000}
currentZindex--;$("#headerimg"+activeContainer).css({"background-image":"url("+photoObject.image+")","display":"block","z-index":currentZindex});$("#headertxt").css({"display":"none"});$("#headerimg"+currentContainer).fadeOut(function(){setTimeout(function(){$("#headertxt").css({"display":"block"});animating=false},800)})};var stopAnimation=function(){$("#control").css({"background-image":"url(images/btn_play.png)"});clearInterval(interval)};navigate("next");interval=setInterval(function(){navigate("next")},slideshowSpeed)});

