jQuery(document).ready(function() {
   jQuery('#mycarousel').jcarousel({
      buttonNextHTML: '<div id="gal_der"><a href="#" onClick="return false;"><img src="imagenes/pictogramas/flecha_der.gif" /></a></div>',
      buttonPrevHTML: '<div id="gal_izq"><a href="#" onClick="return false;"><img src="imagenes/pictogramas/flecha_izq.gif" /></a></div>',
      size: 10,
      scroll: 3,
      visible: 6
   });
});

function loadPicture(bigPicSrc) {
   $("#bigPic").src = bigPicSrc;
   var txt = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';  
   $("#comentario_foto").html(txt);
}