if( typeof String.prototype.startsWith != 'function' )
{
	String.prototype.startsWith = function( str )
	{
		return this.slice( 0, str.length ) == str;
	};
}



// Globals
$( document ).ready( function( )
{
	InitFancybox( );

} );



function InitFancybox( )
{
	$( 'a[rel*=lightbox]' ).fancybox({
			'transitionIn' : 	'none',
			'transitionOut' : 	'none',
			'titlePosition' : 	'inside',
			'autoDimensions'	: false,
			'width'         	: 545,
			'height'        	: 338,
			'titleFormat' : function( title, currentArray, currentIndex, currentOpts )
			{
				return '<span id="fancybox-title-over">Photo ' + ( currentIndex + 1 ) + ' / ' + currentArray.length + " - \"" + ( title.length ? title : '' ) + '\"</span>';
			}
	});
}
