|    
			
				07/08/2012, 12:59
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: julio-2012 
						Mensajes: 9
					 Antigüedad: 13 años, 3 meses Puntos: 0 |  | 
  |  Respuesta: Modificar Lightbox  
  o tambien en esta parte
 // We have an image set? Or just an image? Let´s see it.
 if ( jQueryMatchedObj.length == 1 ) {
 settings.imageArray.push(new Array(objClicked.getAttribute('href'),objClicked.g  etAttribute('title')));
 } else {
 // Add an Array (as many as we have), with href and title atributes, inside the Array that storage the images references
 for ( var i = 0; i < jQueryMatchedObj.length; i++ ) {
 settings.imageArray.push(new Array(jQueryMatchedObj[i].getAttribute('href'),jQueryMatchedObj[i].getAttribute('title')));
 }
 }
 while ( settings.imageArray[settings.activeImage][0] != objClicked.getAttribute('href') ) {
 settings.activeImage++;
 }
 // Call the function that prepares image exibition
 _set_image_to_view();
 }
     |