/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function change_bg(id,ruta){
	var background;
	background="transparent url("+ruta+") no-repeat";
	document.getElementById(id).style.background = background;
}

