$(document).ready(function(){


		$('.toonTekst').click(
		function(e)
			{
				e.preventDefault();
				$('.teTonenTekst').toggle(400,'swing');
			}
		);


		$('.groteKader').hover(
			function() {
				$(".thumbcontent",this).stop(true,false).animate({top: '-210px'},
					200,
					"swing",
					function() { }
				);
			},
			function() {
				$(".thumbcontent",this).stop(true, false).animate({top: '-420px'},
					150,
					"swing",
					function() {
						$(this).animate({top: '0px'},
							0,function() { }
						);
					}
				);
			}
		);

		
		
		$('.middelKader').hover(
			function() {
				$(".thumbcontent",this).stop(true,false).animate({top: '-150px'},
					175,
					"swing",
					function() { }
				);
			},
			function() {
				$(".thumbcontent",this).stop(true,false).animate({top: '-300px'},
					125,
					"swing",
					function() {
						$(this).animate({top: '0px'},
						0, function() { }
						);
					}
				);
			}
		);		
		
		
		$('.kleinKader').hover(
			function() {
				$(".thumbcontent",this).stop(true,false).animate({top: '-70px'},
					200,
					"swing",
					function() { }
				);
			},
			function() {
				$(".thumbcontent",this).stop(true,false).animate({top: '-140px'},
					150,
					"swing",
					function() {
						$(this).animate({top: '0px'},
						0, function() { }
						);
					}
				);
			}
		);				
		

		
		/*
		$("#groteKader").hover(function(){$(this).fadeOut(100);$(this).fadeIn(500);});
		*/
			
		});
