// JavaScript Document

$(document).ready(function() {

	$('form').submit(function(){
		var txt = '';
		$(this).find('input, textarea').each(function(){
			if( $(this).attr('title') && $(this).val().length == 0 ){
				txt += ' - ' + $(this).attr('title') + '\n';
			}
		});
		if(txt && txt.length > 0){
			var header = '___________________________________________________________\n\n De volgende velden zijn verplicht: \n\n';
			var footer = '___________________________________________________________\n\n ';
			alert(header + txt + footer);
			return false;
		}
	});
	
	$('table').each(function(){
		if( $(this).attr('border') && $('table').attr('border') > 0){
			$(this).css('border-top', $('table').attr('border') + 'px solid black');
			$(this).css('border-left', $('table').attr('border') + 'px solid black');
			$(this).find('td').each(function(){
				$(this).css('border-bottom', $('table').attr('border') + 'px solid black');
				$(this).css('border-right', $('table').attr('border') + 'px solid black');
			});
		}
	});
	
	var lengte = 822 / $('#menu > ul > li').length;
	$('#menu > ul > li > a').css('width',lengte-1);
	
});
