Excelente! me ha servido de maravilla.
Finalmente, de cualquier manera tuve que hacer un switch porque el texto del título no se distinguía entre algunas fotos, así que tuve que agregar distintos valores de color.
Quedó así:
Código:
function ChangeBg(){
if (imgact<4){imgact++;}else{imgact=1;}
stUrl=""; stUrl+="url(imagenes/foto"+imgact; stUrl+=".jpg)";
switch(imgact){
case 2: h2color="#FF9900"; break;
case 3: h2color="#FFFFFF"; break;
case 4: h2color="#990000"; break;
default: h2color="#000000";
}
$('h2').css("background-image" , stUrl);
$('h2').css("color" , h2color);
}
Muchas gracias!