domReady(function()
{
	var instanceOne = new ImageFlow();
	instanceOne.init({ 	ImageFlowID:'fotos',
						reflections: false,
						reflectionP: 10,
						slider: false,
						onClick: function() { show_img(this.getAttribute('longdesc')) },
						percentOther:70,
						captions: false,
						circular:true,
						slideshow: true,
						opacity:true,
						opacityArray:[10,10,9,8,4],
						slideshowAutoplay: true,
						slideshowSpeed: 2000,
						xStep: 100,
						imageScaling:true,
						startAnimation: true,
						imageFocusM:1.5,
						imageCursor:'pointer',
						buttons:true,
						shift:-250,
						aspectRatio:2.2,
						imageFocusMax:3
					});
});

function show_img (src) {
	$.fancybox({
		'href':src
	});
}
