  $(document).ready(function(){
	  
	  //Start Button Roll Over
		 $(".buttonNext-horizontal, .buttonAanmelden-horizontal").hover(
		  function () {
			$(this).css("background-position","left bottom");
		  }, 
		  function () {
			$(this).css("background-position","top left");
		  }
		 );
	  //Start Button Roll Over
	
	  //Start of images slide show function
		$(".buttonNext").click(function(){
			sameto = ((608 * 5) *-1)+"px";
		  $(".blocky").animate({"left": "-=608px"}, 600);
			blockyLeftPosition = $(".blocky").css("left");
		  
		  if(sameto == blockyLeftPosition){
			  //hide the button home and show the button Aanmelden
			 $(".buttonNext").css("display","none");
			 $(".buttonNext-horizontal").css("display","none");
			 $(".buttonAanmelden-horizontal").css("display","block");
		  }
		  
		 });
	   //End of images slide show function

		//Start of aanmelden click function
		$(".buttonAanmelden").click(
			function()	{
			window.location="aanmelden.html";
			});
		//End of aanmelden click function


		//Start of account aanmaken click function
		var but;
		but = document.getElementById('MaakMijn');
		if(null != but)
		{
		but.onclick=function(){window.location="aanmelden.html"};
		}
		//End of account aanmaken click function

	  });
