$(document).ready(function() {
	$('#left_arrow').click(function(){
		if (pageNumber != 1)
		 $.ajax({
		   type: "GET",
		   url: "modules/photos.php",
		   data: "id=" + albumID + "&dir=left&currpage=" + pageNumber,
		   beforeSend:function(){
				$('#wait_img').show();		   				   	
				$('#photos_cont').empty();			 			   		
		   },
		   success: function(data){				
			pageNumber = pageNumber-1;				 
			 $('#photos_cont').html(data).find('#all_photos').css('display','none');				 	
			 $('#all_photos').fadeIn(1500, function () {
				$('#wait_img').fadeOut(500);
			 });
			 tb_init('a.thickbox, area.thickbox, input.thickbox');
		   }
		 });
	});
	
	$('#right_arrow').click(function()
	{
		 $.ajax({
		   type: "GET",
		   url: "modules/photos.php",
		   data: "id=" + albumID + "&dir=right&currpage=" + pageNumber,
		   beforeSend:function(){	
			   $('#wait_img').show();
				$('#photos_cont').empty();			 								   		
		   },
		   success: function(data){		
				pageNumber = pageNumber+1;   				    	
				$('#photos_cont').html(data).find('#all_photos').css('display','none');					
				$('#all_photos').fadeIn(1500, function () {
					$('#wait_img').fadeOut(500);
				});
				tb_init('a.thickbox, area.thickbox, input.thickbox');					
			}
		  });
	  });
	  
	  if (!showArrows){
			$("#right_arrow").hide();
			$("#left_arrow").hide();
	  }
});
