
/***  CONFIGS of Lightbox  ***/


/*
 * Oog Photo-Gallery v3.1
 * 2009 von Torben Rottbrand
 */


resize_photos = 'only_to_bigs';     // (expects 'all', 'only_to_bigs', 'only_to_smalls', 'fixed' or 'never')
                                    // if resize_photos=='all' the lightbox will resize all photos to the display's size
                                    // if resize_photos=='only_to_bigs' the lightbox will resize only photos that are bigger than the display's size to the display's size
                                    // if resize_photos=='only_to_smalls' the lightbox will resize only photos that are smaller than the display's size to the display's size
                                    // if resize_photos=='fixed' the lightbox will resize photos to a fixed size
                                    // if resize_photos=='never' the lightbox wont resize photos and will show them in original size

fixed_photo_height = 0;             // (expects an integer) works only if resize_photos=='fixed'. is the the fixed 					height of the photos in px.
fixed_photo_width = 0;              // (expects an integer) works only if resize_photos=='fixed'. is the the fixed 					width of the photos in px.

timeout_slideshow = 3000;           // (expects an integer) defines the time in milliseconds for switching photos in 					the slideshow

/******************************************************
	Lightbox's HTML-Code
*******************************************************/

//Here is the Lightbox's XHTML-code.
//Be careful with modifying the code! For help visit forum.oog-gallery.de

oog_lightbox_html = '<div id="id_oog_overlay"></div>' + 
'<div id="id_oog_loading">' + 
'<br />' + 
'<p>Press ESC to cancel loading</p>' + 
'</div>' + 
'<div id="id_oog_lightbox">' + 
'<table height="100%" width="100%" border="0">' + 
'<tr>' + 
'<th>' + 
'<img id="id_oog_photo" border="0" />' + 
'</th>' + 
'</tr>' + 
'<tr width="100%" height="60">' + 
'<th>' + 
'<input type="button" onclick="info()" id="oog_infobut" title="Infos | i" />' + 
'<input type="button" onclick="previous()" id="oog_previousbut" title="vorheriges Foto | Linke Pfeiltaste" />' + 
'<input type="button" onclick="slide()" id="oog_slidebut" title="Start Diaschau" />' + 
'<input type="button" onclick="next()" id="oog_nextbut" title="nächstes Foto | Rechte Pfeiltaste" />' + 
'<input type="button" onclick="exitlightbox()" id="oog_closebut" title="Schließen | Esc" />' + 
'</th>' + 
'</tr>' + 
'</table>' + 
'</div>';
