$(document).ready(function () {
	$("div#right").css({ 'display': 'block'});
	$("div#imagesFrame").css({ 'overflow': 'hidden'});
	$("#right ul li a:first").css({'background-color': 'white'});


    $("#right ul li a").each(function (i) {
		if(i == 0)  $(this).css({'background-color': 'white', 'color': 'white'});
         $(this).click(function (e){
			e.stopPropagation();
			e.preventDefault();
			$("#right ul li a").css({'background-color': '#3c2201', 'color': '#3c2201'});
			$(this).css({'background-color': 'white', 'color': 'white'});
			$("#beschrijving").fadeOut(100);
			i_status = "UIT";
			$("div#imagesFrame").scrollTo(558 * i, 400);});
	});

	var i_status = "UIT";
	$("#information a").click(function (e) 
	{
		e.stopPropagation();
		e.preventDefault();
	  if(i_status == "UIT"){
		$("#beschrijving").fadeIn(300);
		i_status = "AAN";}
	  else if(i_status == "AAN"){
		$("#beschrijving").fadeOut(300);
		i_status = "UIT";}
	});   
    
   
});
		

