(function($){
	$(document).ready(function(){
		//show stuff that should only be shown if js is enabled
		$('.ifjs').css("visibility", "visible");
		//handle the rondleiding button-- ---- NO MOVIE YET, thus this is comemnted out
		/*var x = '<object width="480" height="385"><param name="movie" value="http:\/\/www.youtube.com/v/h7k2uwJmwxo?fs=1&amp;hl=nl_NL&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/h7k2uwJmwxo?fs=1&amp;hl=nl_NL&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>';
		$('#rondleiding').css('cursor', 'pointer').fancybox({'content': x});*/
		//we need to handle the resizing of the team image (otherwise it will overlap the content)
		if(IF_IE8_GTE){
			addResizeHandler(function(){
				var leftOffset = $('#content').offset().left;
				var w = leftOffset>750?750:leftOffset;
				$('#team').width(w);
			});
			//$(window).resize();
		}
	});
})(jQuery);
