$(function(){
		$('#menu li').mouseover(function() { $(this).addClass('hover'); });
		$('#menu li').mouseout(function() { $(this).removeClass('hover'); });
		$('#establishment tr').each(function() { $(this).children('td:first-child').addClass('first_td'); });
		$('#establishment tr:odd').addClass('odd');
		$('.box').each(function(i) { $(this).find('p:empty').remove() });
		$('.box').each(function(i) { $(this).find('p:first').addClass('firstP'); });
		$('#tx_indexedsearch').attr('name', 'tx_indexedsearch');
		
});

function CheckForm() {
	var naam = document.getElementById("mailformnaam").value;
	var adr1 = document.getElementById("mailformaddress1").value;
	var phone = document.getElementById("mailformtelefoon").value;
	var er=""; var k=0;
	if (naam=="") {k=1; er="Please type in the naam!\n";}
	if (adr1=="") {k=1; er=er+"Please type in the address!\n";}
	if (phone=="") {k=1; er=er+"Please type in the phone!\n";}
	if (k==1) {
		alert(er);
	} else {
		document.getElementById("mailform").submit();
	}
}