$(document).ready(function(){

$("#efx1").toggle(function() {
	$("#holder").animate({
			height: 'hide',
			opacity: 'hide'
		}, 'slow');
	}, function() {
		$("#holder").animate({
			height: 'show',
			opacity: 'show'
		}, 'slow');
	});

    $("#nextphoto").click(function () { 
//      $(this).slideUp(); 
		var xid = document.getElementById("idcurr").innerHTML;
		var nextid = document.getElementById("idnext").innerHTML;
		var xcat = document.getElementById("idcat").innerHTML;
//		alert(nextid);
		$("#boxId").fadeOut("slow");

//		document.getElementById("FotoBoxId").innerHTML = '<div style="width:512px;text-align:center;height:300px;"><img src="/images/lunaloading.gif" noalt="" style="margin:70px auto;margin-top:40px;"  class="noborder" /></div>';
	  var html = $.ajax({
      url: "/nextprev.php",
      global: false,
      type: "GET",
      data: ({id : [xid],cat : [xcat] }),
      dataType: "text",
      success: function(msg){
//  alert(msg);
			 if (msg != "ERROR"){
		 document.getElementById("FotoBoxId").innerHTML = msg;
//	     alert(msg);
//<div id="boxId" style="display:none;"><img src="'+msg+'" class="imgsingle"  noalt="" /><span id="idcurr" style="display:none;">'+xid+'</span><span id="idnext" style="display:none;">'+nextid+'</span><span style="display:none;" id="idcat">'+xcat+'</span></div>';
 		 $("#boxId").fadeIn("slow");
		 }
		 else {
		 var previd = document.getElementById("idprev").innerHTML;
		 previd = parseInt(previd)+1;	
		 document.getElementById("FotoBoxId").innerHTML = '<div id="boxId" style="display:none;"><h2>End Album</h2><span id="idprev" style="display:none;">'+previd+'</span><span id="idcurr" style="display:none;">'+previd+'</span><span id="idnext" style="display:none;">'+nextid+'</span><span style="display:none;" id="idcat">'+xcat+'</span><span id="descr">'+xdesc+'</div>';
		 $("#boxId").fadeIn("slow");

		 }

       }
   	  }).responseText;


    });
    $("#prevphoto").click(function () { 
//      $(this).slideUp(); 
		var xid = document.getElementById("idcurr").innerHTML;
		var previd = document.getElementById("idprev").innerHTML;
		var xcat = document.getElementById("idcat").innerHTML;
		$("#boxId").fadeOut("slow");
//		document.getElementById("FotoBoxId").innerHTML = '<div style="width:512px;text-align:center;height:300px;"><img src="/images/lunaloading.gif" noalt="" style="margin:70px auto;margin-top:40px;"  class="noborder" /></div>';
	  var html = $.ajax({
      url: "/prev.php",
      global: false,
      type: "GET",
      data: ({id : [xid],cat : [xcat] }),
      dataType: "text",
      success: function(msg){
//        alert(msg);
		 if (msg != "ERROR"){
		 document.getElementById("FotoBoxId").innerHTML = msg;
 		 $("#boxId").fadeIn("slow");
		 }
		 else {
		 previd = previd-1;
		 document.getElementById("FotoBoxId").innerHTML = '<div id="boxId"  style="display:none;"><h2>End Album</h2><span id="idcurr" style="display:none;">'+previd+'</span><span id="idnext" style="display:none;">'+previd+'</span><span style="display:none;" id="idcat">'+xcat+'</span></div>';
		 $("#boxId").fadeIn("slow");

		 }
       }
   	  }).responseText;


    });
});


jQuery.preloadImages = function()
{
  for(var i = 0; i<arguments.length; i++)
  {
    jQuery("<img>").attr("src", arguments[i]);
  }
}




