$(document).ready(function () {

function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div id="tip7-title"><span><a href="javascript:;" onclick="$.fancybox.close();"><img src="/wordpress/wp-content/themes/alluro/images/close.jpg" /></a></span>' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
}
	
	$('.characters-zoom a').fancybox();
	
	$('#thumbnails a').attr('rel', 'gallery');
	
	$('#thumbnails a').fancybox({
'showCloseButton'	: false,
	'titlePosition' 		: 'inside',
	'titleFormat'		: formatTitle

});
	
	$('#slideshow').cycle({ 
		delay: 10000,
		speed: 1000
	});	
	
});
