/*trigger the fancybox plug in*/
function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="/img/closelabel.gif" /></a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
}

$(document).ready(function(){
	$("a.fancy").fancybox({
		titleShow: true,
		'showCloseButton'	: false,
		titlePosition: 'inside',
		'titleFormat'	: formatTitle
	});
});
