$(function() {
	$('#gallery a').lightBox({fixedNavigation:true});
	});
$(function() {
	$('.item-left-bar a[rel^=lightbox]').lightBox({fixedNavigation:true});
	});

$(document).ready(function (){
	
			/*Gallery*/

			$('#gallery-right').html( '<a href="#" id="nextarrow" title="More (Forward)"><img src="./images/gallery-right.png" width="35" height="36" alt="More (Forward)"></a>' );
			$('#gallery-left').html( '<a href="#" id="prevarrow" title="More (Back)"><img src="./images/gallery-left.png" width="35" height="36" alt="More (Back)"></a>' );
			
			$('#gallery').cycle({ 
				cleartype:  false,
				fx: 'scrollHorz',
				timeout: 0,
				next: '#nextarrow', 
				prev: '#prevarrow' 
				});
			
			});
