/* -- externe links -- */
$(document).ready(function(){

	$('a').focus(function() {this.blur();});

	$('#logo').css('display','none');
	
	window.setTimeout(function() {
		$('#logo').fadeIn(300, function() {
			if ($.browser.msie)
			this.style.removeAttribute('filter');
		});
		}, 200);
	
	$('#content').css('display','none');
	
	window.setTimeout(function() {
		$('#content').fadeIn(500, function() {
			if ($.browser.msie)
			this.style.removeAttribute('filter');
		});
	}, 500);

	window.setTimeout(function() {
		$('#logo img').hover(function() {$(this).attr("src","/images/templates/logo_wit.png");}, function() {$(this).attr("src","/images/templates/logo.png");});
	}, 500);


	$('#content a img').hover(
		function(){
			$(this).stop().animate({"opacity": .60});
	}, function(){
			$(this).stop().animate({"opacity": 1});
	});

	$('#subitems a img').hover(
		function(){
			$(this).stop().animate({"opacity": .60});
	}, function(){
			$(this).stop().animate({"opacity": 1});
	});

	$('#overzicht .item').hover(
		function(){
			$(this).stop().animate({"opacity": .60});
	}, function(){
			$(this).stop().animate({"opacity": 1});
	});

	jQuery('.item::nth-child(3n)').css({'margin-right': 0});
});
