// JavaScript Document
// requires jquery 1.3.2
// ambetante table: 3d borders, corners, dubbele heading, ...


$(document).ready(function(){		
			//ambetante table style
			//alles links uitlijnen
			$('.iframetable thead tr th').addClass('table_alignleft');
			$('.iframetable tfoot tr td').addClass('table_alignleft');
			$('.iframetable tbody tr td').addClass('table_alignleft');
			//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:first-child').addClass('left_td');
			
			$('.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 tr:last-child td').addClass('tablefoot');
			//$('.iframetable tr:last-child td:first-child').addClass('tablefooter_leftcorner');
			
			//$('.iframetable  tr:last-child td:last-child').addClass('tablefooter_rightcorner');
			
			
			//footer
			
			$('.iframetable tfoot td:first-child').removeClass('table_rightborder');
			$('.iframetable tfoot td:first-child').addClass('tablefooter_rightcorner');			
			$('.iframetable tfoot td:first-child').addClass('table_leftborder');	
			$('.iframetable tfoot td:first-child').css('border-right','0px');
	   })
