function init_photogallery(){
  jQuery('#photogallery').galleryView({
    filmstrip_size: 7,
    frame_width: 122,
    frame_height: 89,
    background_color: 'white',
    nav_theme: 'light',
    border: 'none',
    show_captions: false,
    pause_on_hover: true
  });
}

jQuery(document).ready(function(){
  init_photogallery();
});

