function formatTitle(title, currentArray, currentIndex, currentOpts) {
	return '<div class="line left normal"><div class="fieldnom bold green" style="width: 90%">' + (title && title.length ? '' + title + '' : '' ) + '</div><div class="fieldnom right imginfo" style="width: 10%">' + (currentIndex + 1) + ' / ' + currentArray.length + '</div></div>';
}
function formatTitle2(title, currentArray, currentIndex, currentOpts) {
	return '<div class="line left normal"><div class="fieldnom bold green" style="width: 90%">' + (title && title.length ? '' + title + '' : '' ) + '</div></div>';
}

$(document).ready(function(){
	$("a.imgshow").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition'  : 'inside',
		'overlayOpacity' : '0.8',
		'overlayColor' : '#000',
		'type' : 'image',
		'titleFormat' : formatTitle
	});
	
	
	$("a.iframeshow").fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition'  : 'inside',
		'scrolling' : 'no',
		'width' : 740,
		'height' : 500,
		'overlayOpacity' : '0.8',
		'overlayColor' : '#000',
		'type' : 'iframe'
		
	});
	

});