$(document).ready( function(){

	$('#menu li').hover( function(){

		$(this).children('a').addClass('hover');
		$(this).children('.subMenu').show();

	}, function(){

		$(this).children('a').removeClass('hover');
		$(this).children('.subMenu').hide();

	});

});

function checkfields() {
	if ( document.getElementById('shout').value == '' || document.getElementById('naam').value == '' ||
		document.getElementById('shout').value == 'shout (max 30 karakters)' || document.getElementById('naam').value == 'alias (max 8 karakters)'
	 ) {
		alert('vul aub beide velden in');
		return false;
	}	 else {
		return true;
	}
}
