jQuery( document ).ready( function(){
  
	function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div id="tip7-title">' + (title && title.length ? '<b>' + title + '</b>' : '' ) + 'Image ' + (currentIndex + 1) + ' of ' + currentArray.length + '</div>';
	}

  /* FancyBox */
	var fancies = jQuery( "a.fancy" );
  if ( fancies.length ){
    fancies.fancybox( {
      'overlayShow':    true,
      'overlayOpacity': 0.8,
      'padding':        0,
      'zoomSpeedIn':    500,
      'zoomSpeedOut':   500,
			'titlePosition':  'inside',
			'titleFormat'	: formatTitle
    } );
  };

	/* Fancy Transitions for #index-banner */
	var banner = jQuery( '#slideshow' );
	if ( banner.length ){
		banner.jqFancyTransitions( { width: 300, height: 225, effect: 'zipper', delay: 5000 } );		
  }

} );
