/*

  if ( obsoleteBrowser )
    $("a#browserAlert").fancybox({
      type: 'iframe',
      titlePosition: 'inside',
      titleFormat: setupTitleBar,
      showCloseButton: false,
      padding: 0,
      margin: 0,
      width:  700,
      height: 400
    });

*/

if ( typeof( $ ) !== 'undefined' ) {
  
  $( document ).ready( function() {
    
    $(".photos a").fancybox({
      'hideOnContentClick': true,
      'overlayShow': false,
      'zoomSpeedIn': 500,
      'zoomSpeedOut': 500,
      'titlePosition': 'over',
      'titleFormat': function( title, elements, index ) {
        
        if ( !$.trim( title ) )
          return;
        
        var newtitle =
          '<div id="fancybox-title-over">' +
            '<b>' +
              title.substr( 0, title.indexOf('|') - 1 ) +
            '</b>' +
            '<br/><br/>' +
            title.substr( title.indexOf('|') + 1 ) +
          '</div>'
        ;
        
        return newtitle;
        
      }
    });
    
  });
  
}
