// JavaScript Document
var before=1;
function cambiarfoto(galeria, foto, id, actualiza,tamanio){
	if(!actualiza){
		actualiza = 'foto';	
	}
	if(!tamanio){
		tamanio = 'medium';	
	}
	
	var img = document.getElementById(actualiza);
	img.src = '/galerias/'+galeria+'/'+tamanio+'/'+foto;
	var light = document.getElementById('luzbox_'+actualiza);
	light.href = '/galerias/'+galeria+'/'+foto;
	if(document.getElementById('nombrefoto')){
		document.getElementById('nombrefoto').innerHTML = foto;
	}
	if($('luzbox_foto_encimado')){
		$('luzbox_foto_encimado').href = '/galerias/'+galeria+'/'+foto;
	}
	var liBefore = document.getElementById('li'+before)
	liBefore .className = '';
	var liAfter = document.getElementById('li'+id)
	liAfter.className = 'selected';
	before = id;
	return false;
}