$(document).ready(function(){

	// header images
	if($('#hd_images').length > 0) {
		$('#hd_images').cycle({
			next:   '#hd_images'
		});
	}
	
	
	// gallery showcase
	if($('#gallery').length > 0) {
		$("#gallery li a[rel=group]").fancybox({
			/* 'padding'			: 'none' */
			'titlePosition' 	: 'over',

			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});
	}


});


