FLYG.ready(function(){

	var img=new FLYG.ImageViewer(
		'imgViewer',																// the ID of the container DIV
		'imgViewerNext',															// the ID of the Next button
		'imgViewerPrev',															// the ID of the Previous button
		['images/1.jpg','images/2.jpg','images/3.jpg','images/4.jpg','images/5.jpg','images/6.jpg','images/7.jpg'],							// an array of image files
		['&copy; © Associato de Turismo do Algarve / Algarve Promotion Bureau','&copy; Associato de Turismo do Algarve / Algarve Promotion Bureau','&copy; Associato de Turismo do Algarve / Algarve Promotion Bureau','&copy; Associato de Turismo do Algarve / Algarve Promotion Bureau','&copy; Associato de Turismo do Algarve / Algarve Promotion Bureau','&copy; Associato de Turismo do Algarve / Algarve Promotion Bureau','&copy; Associato de Turismo do Algarve / Algarve Promotion Bureau']						// an array of copyright info
		);
		
	if (FLYG.GMap){
		FLYG.GMap.getLocations({group:'FAO'},function(){
			(new FLYG.GMap.Display('mapouter','maplayer')).load('*',function(map,loc,marker){
				GEvent.addListener(marker,"click",function(point){
					if (point){
						var html=(loc.category.toLowerCase()=='hotel') ? '<a href="'+FLYG.Info.rootURL+'hotels.asp?atop='+loc.id+'">'+loc.label+'</a>' : loc.label;
						var overlay=new FLYG.GMap.CustomOverlays.Label(html,point,loc.id);
						if (overlay && overlay.point) map.addOverlay(overlay);
						}
					});
				});
			});
		}
	
	});