$(document).ready( function() {
	// pngfix
    $('#body').ready(function(){
		$('#body').pngFix();
	});
	
	var contentheight = $('#content').height();
	var menuheight = $('#menu').height();
	if (menuheight < contentheight) {
		$('#menu').height(contentheight - 391);
	}
	
	$('.firstlink').each(function() {
		$(this).click(function() {
			document.location.href = $(this).find('a.lees_meer[href]').get(0).href;
		});
		$(this).bind('mouseenter',function() {
			$(this).find('a.lees_meer[href]').eq(0).addClass('hover');
		});
		$(this).bind('mouseleave',function() {
			$(this).find('a.lees_meer[href]').eq(0).removeClass('hover');
		});
	})
	
	$('a.lightbox').lightBox(); // Select all links with lightbox class
});
