<!--

	$(function(){
		if($(".klanten").length > 0) {
			$(".klant img").css("opacity",0.5);			


			$(".klant img").hover(function(){
				$(this).fadeTo("fast",1);							   
			},function(){
				$(this).fadeTo("fast",0.5);							   
			});

		}
		
		$("button").css("opacity",0.8);

		$("button").hover(function(){
			$(this).fadeTo("fast",1);							   
		},function(){
			$(this).fadeTo("fast",0.8);							   
		});

		$("button").click(function(){
			var s = $(this).attr("link");
			if(s + "" !== "undefined" || s + "" !== "") {
				document.location.href = s;	
			}
										   
		});
		
		
		var getoond = false
		$(".bol").click(function(){
			if(!getoond) {
				$(".purple").animate({
					"marginTop" : "0px"
				},"slow");
				$(".bol").animate({
					"marginTop" : "34px"
				},"slow");
				getoond = true;
			} else {
				$(".purple").animate({
					"marginTop" : "-34px"
				},"fast");
				$(".bol").animate({
					"marginTop" : "2px"
				},"fast");
				getoond = false;
			}								 
		});
		
	});

-->
