Shadowbox.init();
$(document).ready(function() {
    /*
    $('.arrow').each(function(index, element) {
        $(this).hover(function(e) {
			$(this).parent().children('.menu').show();
		});
    });
	
	$('.menu').each(function(index, element) {
        $(this).hover(function(e){
		
		}, function(e) {
			$(this).hide();
		})
    });*/
        
    //'Toggled' de tekstpagina's, zodat je die weg kunt klikken
    $(".link a[href='/js/init.php']").each(function(e) {
      var newURL =  $(this).attr("href").substring(0, $(this).attr("href").lastIndexOf('/'))+'/';
      $(this).attr("href",newURL);
    });
    
    $(".menuBlock").each(function(e) {
        var url = $(".link a", $(this)).attr("href");
        
        //Maakt ook de plaatjes clickable
        $(".image img", $(this)).wrap('<a href="'+url+'">');
    }).hover(function(e) {
        //Het menutje wordt zichtbaar als je over de balk hovert;
        $(".menu", $(this)).toggle();
    });
});

