$(document).ready(function(){ 

	/*
	*
	* IMAGE LIGHTBOX
	*
	* 	
	* Tutorials: http://www.balupton.com/sandbox/jquery_lightbox/
	* 
	* 
	* Options:
	* 
	* 	Name: show_info
	* 	Description: Should we force the show of the image information?
	* 	Values:
	* 	  "auto" (default)     - It should be handled automaticly on rollover
	* 	  true                 - It should be forced to show
	  
	* 	Name: show_extended_info
	* Description: Should we force the show of the extended image information?
	* Values:
	*   "auto" (default)     - It should be handled automaticly on rollover
	*   true                 - It should be forced to show
	*   
	* Name: download_link
	* 	Description: Should we show the image download link?
	* 	Values:
	* 	  true (default)       - Yes we should
	* 	  false                - No we shouldn't
	* 	  
	* 	Name: auto_resize
	* 	Description: Should we auto resize the image if it is too big?
	* 	Values:
	* 	  true (default)       - Yes
	*   false                - No
	* 	
	* 	Name: ie6_support
	* 	Description: Should we support IE6
	* 	Values:
	* 	  true (default)       - Support IE6
	* 	  false                - Ignore IE6
	* 	
	* 	Name: ie6_upgrade
	* 	Description: Should we show an IE6 upgrade message for IE6 users
	* 	Values:
	* 	  true (default)       - Yes
	* 	  false                - No
	* 	
	* 	Name: show_linkback
	* 	Description: Show or hide the linkback up the top right corner
	* 	Values:
	* 	  true (default)       - Show the linkback
	* 	  false                - Hide the linkback
	* 	
	* 	Name: auto_scroll
	* 	Description: How should scrolling be handled?
	* 	Values:
	* 	  "follow" (default)   - Scroll with the user
	* 	  "disabled"           - Don't allow scrolling
	* 	  "ignore"             - Don't care for scrolling (leave lightbox at original position)
	* 	
	* 	Name: speed
	* 	Description: The total amount of milliseconds it takes to perform transitions between images.
	* 	Values:
	* 	  400 (default)        - Take 400 milliseconds
	* 	  integer              - Amoung in milliseconds
	* 
	* 	Name: baseurl
	* 	Description: The baseurl to use to auto include the required files
	* 	Values:
	* 	  null (default)       - Autodetect
	* 	  string               - A string of the manual baseurl to use
	* 			
	* 	Name: files
	* 	Description: The javascript object that contains the locations of the requred files, used if you have renamed files.
	* 	Children: js.lightbox, js.colorBlend, css.lightbox, images.prev, images.next, images.blank, images.loading
	* 	
	* 	Name: text
	* 	Description: The javascript object that contains the text of various parts of the interface, used if you want to do translations.
	* 	Children: image, of, close, closeInfo, download, help.close, help.interact, about.text, about.title, about.link
	* 	
	* 	Name: keys
	* 	Description: The javascript object that contains the key allocations for shortcuts, used if you want to remap the shortcuts
	* 	Children: close, prev, next
	* 	
	* 	Name: opacity
	* 	Description: The opacity of the overlay
	* 	Values:
	*   0.9 (default)        - 90% opacity
	* 	  decimal value        - opacity percentage in decimal form
	* 
	* 	Name: padding
	* 	Description: The padding around the image, if you are using a custom padding you want to adjust this
	* 	Values:
	* 	  null (default)       - Autodetect
	* 	  integer              - the integer amount of the padding
	* 
	* 	Name: rel
	* 	Description: What to look for in the rel tag of links and images to detect if it should have a lightbox
	* 	Values:
	* 	  "lightbox" (default) - Look for rel="lightbox" by default
	* 	  string               - What to lookfor
	* 	
	* 	Name: auto_relify
	* 	Description: Should we do an initial rel scan to automaticly detect lightboxes?
	* 	Values:
	* 	  true (default)       - Yes we should
	* 	  false                - No we shouldn't
	* 
	* 
	* How to apply options?
	* 
	* 	There are two methods, one is through the link form, and the other is through the constructor.
	* 	Use the below examples to derive how it is used to hide the linkback, and translate "Image" to "Photo".
	* 	
	* 	Link method:
	* 		<script type="text/javascript" src="jquery_lightbox/js/jquery.lightbox.packed.js?show_linkback=false&amp;text.image=Photo"></script>
	* 		
	* 	Constructor method:
	* 	<script type="text/javascript" src="jquery_lightbox/js/jquery.lightbox.packed.js"></script>
	* 		<script type="text/javascript">$(function(){
	* 			$.Lightbox.construct({
	* 				show_linkback:	false,
	* 				text: {
	* 					image:		'Photo'
	* 				}
	* 			});
	* 		});</script>
	* 		
	*
	* <a rel="lightbox-myGroup" href="" title="">img</a> // voor afbeeldingen in een groep
	* <a rel="lightbox" href="" title="">img</a> // voor enkele afebeeldingen, dus zonder prev / next buttons
	* 
	*
	*
	*/
	
	$.Lightbox.construct({
						 
		show_info:		true,	
		show_extended_info:	true,
		show_linkback:	true,
		download_link:	false,
		auto_scroll:	"disabled",
		
		text: {
			image:		'Afbeelding',
			of:			'van',
			close:		'Sluiten X',
			closeInfo:	'Je kunt ook buiten de afbeelding klikken om de afbeelding sluiten',
			download:	'Download de afbeelding',
			help: {
				close:		'<img src="js/images/close.gif" width="78" height="28" alt="Sluiten" title="Sluiten" />',
				interact:	'' // 'Klik hier om de afbeelding te sluiten'
			},
			about: {
				text: 	'created by REYEZ!',
				title:	'http://www.reyez.nl',
				link:	'http://www.reyez.nl'
			}
		},
		
		
		keys: {
			close:	's',
			prev:	'<',
			next:	'>'
		}
		
		
		
	});
		
});



