$(document).ready(function()
	{
		var offset = 1;
		$('#sidebargalleryarrows a').css('cursor','pointer');
		$('#prev').click(function(event){
			$.ajax({
			   type: "POST",
			   url: "/ajaxhandler.php",
			   data: "type=galleryprev&offset="+offset,
			   success: function(html){
					$('#sidebargallery').html(html);
			   		offset--;
			   		}
		});
		});
		$('#next').click(function(event){
			$.ajax({
			   type: "POST",
			   url: "/ajaxhandler.php",
			   data: "type=gallerynext&offset="+offset,
			   success: function(html){
			      		$('#sidebargallery').html(html);
			      		offset++;
			   		}
		});
		});
		
		$('#imgs a').lightBox({
			fixedNavigation:true,
			imageLoading: '/images/lightbox/lightbox-ico-loading.gif',
			imageBtnClose: '/images/lightbox/lightbox-btn-close.gif',
			imageBtnPrev: '/images/lightbox/lightbox-btn-prev.gif',
			imageBtnNext: '/images/lightbox/lightbox-btn-next.gif',
			imageBlank: '/images/lightbox/lightbox-blank.gif'
			
			});
	});

