// JavaScript Document

function formatTitle(title, currentArray, currentIndex, currentOpts){
	html='';
			
	linkImg=$('.divGalleria').eq(currentIndex).find('a');
	
	html+='<div class="titoloGalleria">';
	html+='	<div class="scaricaBassa">';
	html+='		<a href="downl.php?file='+linkImg.eq(0).attr('href')+'">Download Low Res</a>';
	html+='	</div>';
	html+='	<div class="numeroImmagine">';
	html+='		' + (currentIndex + 1) + '/' + currentArray.length;
	html+='	</div>';
/*
	if(linkImg.eq(1).attr('href')!=''){
		html+='	<div class="scaricaAlta">';
		html+='		<a href="downl.php?file='+linkImg.eq(1).attr('href')+'">Download High Res</a>';
		html+='	</div>';
	}
*/
	html+='</div>';
	
	return html
}
