// JavaScript Document
$(document).ready(function(){
	$('div#wrapper div#menutopcontainer li').click(function(){
		top.location = $(this).children('a').attr('href');
	});
	
	$('div#wrapper div#menutopcontainer div#menu li').hover(function(){
		$(this).children('a').css({'color' : '#242424'});
	}, function(){
		$(this).children('a').css({'color' : '#5b5b5b'});
	});
	
	$('div#wrapper div#menutopcontainer div#taalmenu li').hover(function(){
		$(this).children('a').css({'color' : '#5b5b5b'});
	}, function(){
		$(this).children('a').css({'color' : '#c3c6ca'});
	});
});
