color_over = "#988C59";
color_out = "#3E3E1E";
text_over = "#FFFFFF";
text_out = "#BBAE67";

function CambiaColor(esto,fondo,texto){
    esto.style.background=fondo;
    esto.style.color=texto;
		esto.style.cursor='hand'
}

function CambiaColor2(esto,fondo){
    esto.style.background=fondo;
		esto.style.cursor='hand';
		esto.style.backgroundImage="url(templates/PUBLIC/images/indica_familia.gif)";
		esto.style.backgroundRepeat="no-repeat";
		esto.style.backgroundPosition="left center";
}