/* JQUERY */


$(function() {
    $(".jcarousel").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
		easing: "backout"
    });
});


$(document).ready(function(){
    

	$(".uitmandje").click(function () {
      
	 $(this).parents(".inmandje").fadeOut("normal");
    
	}); 

  });

//$(document).ready(function(){
//  
//    $("#form_gastenboek").hide();
//
//	$("h3").click(function () {
//      
//	$("#form_gastenboek").slideDown("normal");    
//	
//	}); 
//			
//  });

$(document).ready(function(){
    
    $('tr:nth-child(even)').addClass('rijkleur_even');
	$('tr:nth-child(odd)').addClass('rijkleur_oneven');

  });


/* SLIDESHOW */


window.onload = initLinks;
var thisPic=0;

function initLinks() {
	
	document.getElementById("prevlink").onclick = processPrevious;
	document.getElementById("nextlink").onclick = processNext;
	
	}
	
function processPrevious() {
	
	if(thisPic == 0) {
		
		thisPic = myPix.length;
		
		}
	thisPic--;
	document.getElementById("item_foto").src = myPix[thisPic];
	
	return false;
	}
	
function processNext() {
	
	thisPic++;
	if(thisPic == myPix.length) {
		
		thisPic = 0;
		
		}
	
	document.getElementById("item_foto").src = myPix[thisPic];
	
	return false;
	}



	

	

