//javascript
jQuery(document).ready(function($){  

	/*$(".imgover").hover(function(){
  		this.src = this.src.replace("_off","_on");
 	}, function(){
  		this.src = this.src.replace("_on","_off");
	});*/

	/*$('#hoofdcontent a, #subnavigatie a').hover(function() {
		$(this).stop().animate({ "opacity": 0.4 });
	}, function() {
		$(this).stop().animate({ "opacity": 1 });
	});*/
	
	/*$('.blok').hover(function(){
		$("img", this).stop().animate({top:'45px'},{queue:false,duration:500});
	}, function() {
		$("img", this).stop().animate({top:'0px'},{queue:false,duration:500});
	});	*/
	
	//thumb titles
	$('.blok').hover(function(){
		$("h2", this).stop().animate({top:'170px'},{queue:false,duration:300});
	}, function() {
		$("h2", this).stop().animate({top:'220px'},{queue:false,duration:500});
	});
	
	initialize();
});

