// JavaScript Document
$(function() {
	//Formuliereigenschappen voor IE7-
//	$('input[type="checkbox"], input[type="radio"]').css({'background-image' : 'none','border': 'none'});
//	$('input[type="submit"], input[type="reset"], input[type="button"]').css({
//		'font-family': 'Verdana, Arial, Helvetica, sans-serif',
//		'font-size': '1em',
//		'font-style': 'italic',
//		'color': '#FFF',
//		'margin': '0px',
//		'background-color': '#ACAC81',
//		'border': '1px solid #999',
//		'padding-right': '4px',
//		'padding-left': '4px'
//	});
	// Title en alt attr
  	$('img').attr('alt', function() {
		return (this.alt ? this.alt : '');
	});
	$('img').attr('title', function() {
		return (this.title ? this.title : this.alt);
	});
	$('a').attr('title', function() {
		return (this.title ? this.title : $(this).text());
	});
	// Lijntjes layoutTabel
	$('.layoutTabel tr:first').css('border-bottom', '1px  #AEC1C6 solid');
	$('.layoutTabel tr:eq(1)').css('border-top', '0px red solid');
});
