// JavaScript Document
// requires jquery 1.3.2
// ambetante table: 3d borders, corners, dubbele heading, ...


$(document).ready(function(){		
			//ambetante table style
			
			//1ste headerrow:
			//background left en right + stretcher
			//border top uitschakelen
			$('.iframetable thead tr:first-child th').addClass('tableheading_level1_stretcher');		
			$('.iframetable thead tr:first-child th').addClass('tableheading_notopborder');
			$('.iframetable thead tr:first-child th').addClass('table_header_fontsize');	
			
			$('.iframetable thead tr:first-child th:first-child').removeClass('tableheading_level1_stretcher');
			$('.iframetable thead tr:first-child th:first-child').addClass('tableheading_level1_leftcorner');
			
			$('.iframetable thead tr:first-child th:last-child').removeClass('tableheading_level1_stretcher');
			$('.iframetable thead tr:first-child th:last-child').addClass('tableheading_level1_rightcorner');
			
			
			$('.iframetable thead tr th:first-child').addClass('left_td');
			
			
			$('.iframetable tr:first-child td').addClass('tableheading_first_td');
			
			
			$('.iframetable thead th:last-child').addClass('right_td');
			
			//text in thead wit maken
			//(staat standaard zwart voor clients met javascript disabled, kwestie van geen witte tekst op witte achtergrond)
			$('.iframetable thead th').addClass('th_whitetext');
			
			//3d-borders voor de uiterste datacellen
			$('.iframetable tr td:first-child').addClass('table_leftborder');
			$('.iframetable tr td:last-child').addClass('table_rightborder');
			
			
			
			
			$('.iframetable tfoot td:first').addClass('tablefooter_leftcorner');
			
			$('.iframetable tfoot td:last-child').addClass('tablefooter_rightcorner');
	   })