Ext.namespace('AP');
AP.FH = (function(){
	//fcatid, catid, catname, path
	var fh=[[14,16,'Stock images','resources/home/ritratti/stock/4.jpg'],[9,10,'Interni','resources/home/architettura/interni/pritz04.jpg'],[17,19,'Campo nomadi','resources/home/reportage/nomadi/people21.jpg'],[9,10,'Interni','resources/home/architettura/interni/aumberto9079.jpg'],[9,11,'Agriturismi','resources/home/architettura/agriturismi/rsarale960.jpg'],[17,20,'Rifugiati di guerra','resources/home/reportage/rifugiati/kossov12.jpg'],[17,22,'Musei di Roma','resources/home/reportage/musei/museidiroma12.jpg'],[17,22,'Musei di Roma','resources/home/reportage/musei/dia0009.jpg'],[17,18,'Metro','resources/home/reportage/metro/anziana%20bn.jpg'],[1,8,'Ricerca','resources/home/arte/ricerca/IMG1975.jpg'],[1,8,'Ricerca','resources/home/arte/ricerca/lucefinestra.jpg'],[23,23,'Matrimoni','resources/home/matrimoni/d.jpg'],[13,13,'People','resources/home/people/people2.jpg'],[1,3,'Musei Capitolini','resources/home/arte/capitolini/clupa.jpg'],[1,7,'Illusioni d\'Arte','resources/home/arte/illusioni/dcuriosita1.jpg'],[1,7,'Illusioni d\'Arte','resources/home/arte/illusioni/bCOMPLICITA1.jpg'],[17,18,'Metro','resources/home/reportage/metro/metro122.jpg'],[23,23,'Matrimoni','resources/home/matrimoni/c.jpg'],[9,11,'Agriturismi','resources/home/architettura/agriturismi/mcucciolo9944.jpg'],[23,23,'Matrimoni','resources/home/matrimoni/a.jpg'],[13,13,'People','resources/home/people/people32.jpg'],[9,11,'Agriturismi','resources/home/architettura/agriturismi/ecucciolo914.jpg'],[14,15,'Artisti','resources/home/ritratti/artisti/bperrone.jpg'],[17,18,'Metro','resources/home/reportage/metro/metro126.jpg'],[23,23,'Matrimoni','resources/home/matrimoni/u.jpg'],[13,13,'People','resources/home/people/people13.jpg'],[17,20,'Rifugiati di guerra','resources/home/reportage/rifugiati/kossov3.jpg'],[14,16,'Stock images','resources/home/ritratti/stock/49.jpg'],[1,8,'Ricerca','resources/home/arte/ricerca/fioregigante.jpg'],[13,13,'People','resources/home/people/people1.jpg'],[9,12,'Bed and Breakfast','resources/home/architettura/bb/tanzilli8066.jpg'],[17,22,'Musei di Roma','resources/home/reportage/musei/museidiroma20.jpg'],[1,4,'Ostia','resources/home/arte/ostia/bmaschere984.jpg'],[17,18,'Metro','resources/home/reportage/metro/metro127.jpg'],[9,11,'Agriturismi','resources/home/architettura/agriturismi/fcucciolo0021.jpg'],[9,12,'Bed and Breakfast','resources/home/architettura/bb/bianchilaterano1.jpg'],[1,5,'Miro\'','resources/home/arte/miro/m6552.jpg'],[1,3,'Musei Capitolini','resources/home/arte/capitolini/dcostantino.jpg'],[1,4,'Ostia','resources/home/arte/ostia/ateatro.jpg'],[17,19,'Campo nomadi','resources/home/reportage/nomadi/people19.jpg'],[17,19,'Campo nomadi','resources/home/reportage/nomadi/people25.jpg'],[17,20,'Rifugiati di guerra','resources/home/reportage/rifugiati/kossov6.jpg'],[1,4,'Ostia','resources/home/arte/ostia/ecapitolium991.jpg'],[14,15,'Artisti','resources/home/ritratti/artisti/fsalvucci.jpg'],[1,7,'Illusioni d\'Arte','resources/home/arte/illusioni/flastoria1.jpg'],[23,23,'Matrimoni','resources/home/matrimoni/b.jpg']];
	var baselnk='p.aspx?t=portfolio&l=it&c=';
	var sid="fotoHome";
	var foto1, foto2, fotop1, fotop2;
	var anim1, anim2;
	var cfh, cfhobj;
	var nfh, nfhobj;
	var delay=5;
	var fadeDuration=0.5;
	var task;
	var oktofade;
	var imgloaded=function(){oktofade=true;};
	return {
		init:function(){
			foto1=Ext.get(sid+1);
			foto2=Ext.get(sid+2);
			fotop1=foto1.parent();
			fotop2=foto2.parent();
			foto1.on('load',imgloaded,this);
			foto2.on('load',imgloaded,this);
			cfh=window.cfh;
			cfhobj=fh[cfh];
			foto2.setOpacity(0);
			anim1={duration:fadeDuration};
			anim2={duration:fadeDuration,callback:this.endFade,scope:this};
			task=new Ext.util.DelayedTask(this.fade);
			this.getNext();
			this.setValues();
			task.delay(delay*1000);
		},
		fade:function(){
			if (oktofade) {
				foto1.setOpacity(0,anim1);
				foto2.setOpacity(1,anim2);
			} else task.delay(1000);
		},
		endFade:function(){
			if (anim1.anim.isAnimated) anim1.anim.stop();
			var tmp=foto1;foto1=foto2;foto2=tmp;
			tmp=fotop1;fotop1=fotop2;fotop2=tmp;
			foto1.setStyle('z-index',2);
			foto2.setStyle('z-index',1);
			Ext.fly('cat_'+cfhobj[0]).removeClass('active');
			Ext.fly('cat_'+nfhobj[0]).addClass('active');
			cfh=nfh; cfhobj=nfhobj;
			this.getNext();
			this.setValues();
			task.delay(delay*1000);
		},
		getNext:function(){
			nfh=cfh+1;
			if (nfh>=fh.length) nfh=0;
			if (nfh<0) nfh=fh.length-1;
			nfhobj=fh[nfh];
		},
		gotoCat:function(c){
			document.location.href=baselnk+c;
		},
		setValues:function(){
			oktofade=false;
			var tmp=fotop2.getAttribute('href');
			tmp=tmp.replace(/\(\d+\)/,"("+nfhobj[1]+")");
			fotop2.set({href:tmp});
			foto2.set({src:nfhobj[3],alt:nfhobj[2]});
		}
	};
})();
Ext.onReady(AP.FH.init,AP.FH);
