<!--



	function swapImage(image, pic_uri)
	{
		image.src = pic_uri;
	}
	
	
	
	var loaded_images = new Array();
	
	function loadImages(images_to_load)
	{
		var number_of_loaded_images = loaded_images.length;
		
		for(var index = 0; index < images_to_load.length    ; index++){
// 		for(var index = 0; index < images_to_load.length - 1; index++){
			loaded_images[index + number_of_loaded_images] = new Image();
			loaded_images[index + number_of_loaded_images].src = images_to_load[index];
		}
	}
	
	
	
	function variegateTable(table, color1, color2)
	{
		var rows = table.rows;
		var row_index;
		
		var color = color2;
		
		for(row_index = 0; row_index < rows.length; row_index++){
			var cells = rows[row_index].cells;
			
			if(cells[0].tagName != "TD") continue;
			
			color = (color == color1) ? color2 : color1;
			
			var cell_index;
			
			for(cell_index = 0; cell_index < cells.length; cell_index++){
				cells[cell_index].style.backgroundColor = color;
			}
		}
	}




// -->
