PAGE = {
  Layout: {
    init: function() {
      this.initMainNav();
      this.initBanner();
      this.initColorBox();
    },
        
    
    initMainNav: function() {
      jQuery(".menu ul").superfish({
        animation : { height: 'show' },
        delay: 700,
        autoArrows: false,
        dropShadows: false
      });
    },
    
    initBanner: function() {
      jQuery('#wechsel-banner').innerfade({
        speed: 'slow',
        timeout: 5000,
        type: 'sequence',
        containerheight: '189px'
      });
    },
    
    initColorBox: function() {                        
            jQuery("a[rel^=lightbox]").colorbox({maxWidth:800, maxHeight:600}); 
            jQuery("a.iframe").colorbox({iframe:true, width:1055, height:800});              
        },
    
  }
}

