if(window.addEventListener){
	window.addEventListener('load', alignCols, false);
}else{
	window.attachEvent('onload', function(){
		alignCols();
	});
}

if (window != top) top.location.href = location.href;

//			:::		START ALIGN BASED ON COL STYLES		:::

function alignCols(){
	var t = document.getElementsByTagName('table');
	
	for(x=0;x<t.length;x++){
		var col = t[x].getElementsByTagName('col');
		var tr = t[x].getElementsByTagName('tr');
		
		for(y=1;y<tr.length;y++){
			var td = tr[y].getElementsByTagName('td');
			
			for(z=0;z<col.length;z++){
				td[z].className = col[z].className;
	
				//alert(td[z].className + ' ' + col[z].className);
			}
		}
	}
}

//			:::		END ALIGN BASED ON COL STYLES		:::