$(document).ready(function() {

// put all your jQuery goodness in here

//$(".brouwerij").next().hide();

//$(".brouwerij").click(function() {

//$(this).next().toggle();

//});
 
$("table.bier> tbody > tr:even").addClass("brouwerij");
$("table.bier> tbody > tr:odd").hide();
$("table.bier> tbody > tr:even").click(function() {

   $(this).next().toggle();

});


});


function showimage(image){
	document.grotefoto.src=image;
}

