// Background Image Cache 0.01
// Copyright 2008-2009 Zorraquino, http://www.zorraquino.com

try {
	document.execCommand("BackgroundImageCache", false, true);
} 
catch(e) {}

// Color Table Tr 0.01
// Copyright 2008-2009 Zorraquino, http://www.zorraquino.com

function color_tr(){
	if(document.getElementById('table')){
		var tabla = document.getElementById('table');
		var filas = tabla.getElementsByTagName('tbody')[0].getElementsByTagName('tr');
		var num_filas = filas.length;
		for (i = 0;i < num_filas; i++){
			filas[i].onmouseover = function(){
				this.style.backgroundColor = "#f3f3f3";
			}
			filas[i].onmouseout = function(){
				this.style.backgroundColor = "#ffffff";
			}
		}
	}
}