$(document).ready(function() {
	/*$('a.MenuHover').hover(function() { //mouse in
		$(this).animate({ paddingLeft: '20px' }, 200);
	}, function() { //mouse out
		$(this).animate({ paddingLeft: 0 }, 200);
	});*/
	$('a.MenuHover').hover(function() {
		$(this).css({'padding-left':'2px'});
	},	function() {
		$(this).css({'padding-left':'0'});
	});
	$('a[href^=#]').click(function(){
		$('#displaybox').hide().fadeIn('fast').animate({'opacity' : 0.95}, 200);
                $('#slider').hide();
    });

	//$('table.competitie tbody tr:odd').css({'background-color':'#003366', 'color':'#ffffff'})
	//$('table.competitie tbody tr:odd td').css({'border-bottom':'1px dotted #ffffff', 'color':'#ffffff'})
});

