// JavaScript Document
var lbOptions = {
		overlayBgColor: '#CCCCCC',
		txtOf: '/',
		imageBtnClose: 'lightbox/close.gif',
		imageBtnPrev: 'lightbox/prev.gif',
		imageBtnNext: 'lightbox/next.gif',
		imageBlank: 'lightbox/blank.gif',
		fixedNavigation:true
		};
		
$(document).ready(function() {
	
	/* thumbnails hover */
	$('#thumbnails img').hover (
		function () {
			$(this).addClass('focus');
			},
		function() {
			$(this).removeClass('focus');
			}); /* end hover */
			
	$('#thumbnails a').lightBox(lbOptions);
	
	}); /* end ready */