window.addEvent('load',function() {
  // unfurling vertical banner with the picture of the church
  $('vertbannercontainer').addEvent('mouseover',function(event) {
    this.set('morph', {link: 'cancel', duration: 'long'});
    this.morph({height: '589px'});
    this.setStyle('borderBottom','0px solid #FFF');
  });
  $('vertbannercontainer').addEvent('mouseout',function(event) {
    this.set('morph', {link: 'cancel', duration: 'long'});
    this.morph({height: '66px'});
    this.setStyle('borderBottom','4px solid #FFF');
  });
  $('vertbannercontainer').setStyles({height: '66px','borderBottom': '4px solid #FFF'});
});
