setminheight = function() {
  minheight = jQuery(window).height() - 2;
  jQuery('#mainwrapper .mainwrapper4').attr('style', 'min-height: '+minheight+'px;');
}
galeryshow = function() {
  gal = jQuery('#block-views-photogalery-block .views-field-field-image ul');
  active = jQuery(gal).find('li:visible');
  next = active.next();
  if (next.length == 0) next = jQuery(gal.find('li')[0]);
  active.hide(1000);
  next.show(1000);
}
galeryinit = function() {
  gal = jQuery('#block-views-photogalery-block .views-field-field-image ul');
  gal.height('300').width('300').css('backgroundColor','#aaa');
  galery = jQuery(gal).find('li');
  for (i = 0; i < galery.length; i++) {
    padding = (300 - jQuery(galery[i]).height()) / 2;
    jQuery(galery[i]).css('paddingTop', padding).css('paddingBottom', padding);
    if (i > 0) jQuery(galery[i]).hide();
  }
  window.setInterval(galeryshow, 5000);
}
jQuery(document).ready(setminheight);
jQuery(window).resize(setminheight);
jQuery(window).load(galeryinit);


;

