// JavaScript Document

function init_debug_tables () {
	
	var tables = $('table.dev_report_table');
	
	if (tables) {
		
		for (var i = 0; i < tables.length; i++) {
			
			for (var r = 0; r < tables[i].rows.length; r++) {
				if (r > 0) {
					tables[i].rows[r].className = "dev_report_table_row" + (r % 2);
				}
			}
			
		}
		
	}
	
}

function cacheImages(){
	var objImage = new Image();
	for (var i = 0; i < arguments.length; i++) {
		objImage.src = arguments[i];
	}	
}