$(document).ready(function() {

	$(".img").click(function(){
		
		var items = $(this).attr('id').split('_');
		//alert(items[1]);
				
		$.ajax({
		   type: "POST",
		   url: "/index.php/home/load_foto/",
		   data: "album="+items[0]+"&foto="+items[1],
		   success: function(result){
				
		   		$("#photo").fadeIn("slow");
				$("#photo").html(result);
				
				$("#exit").click(function(){
	 				$("#photo").fadeOut("slow");
	  			});
		   }
		 });
		 
	 });
	 
});


function browse(type, album, photo)
{
	if(type=='next')
	{
		$.ajax({
			type: "POST",
			url: "/index.php/home/next/",
			data: "album="+album+"&foto="+photo,
			success: function(result){
				$("#photo").html(result);
				$("#exit").click(function(){
	 				$("#photo").fadeOut("slow");
	  			});
			}
		});
	}
	else if(type=='prev')
	{
		$.ajax({
			type: "POST",
			url: "/index.php/home/prev/",
			data: "album="+album+"&foto="+photo,
			success: function(result){
			$("#photo").html(result);
				$("#exit").click(function(){
	 				$("#photo").fadeOut("slow");
	  			});
			}
		});
		
	}
}