var Site = {
	start: function(){


$$('a, input[type=image]').addEvents({'focus':function () {this.blur()}  });

$('fastswitch_content').set('reveal', {
	duration: 500
}).get('reveal').toggle();

$('fastswitch_button').addEvent('mouseover', function(){
  $('fastswitch_content').get('reveal').toggle();
});
 $('fastswitch_content').addEvent('mouseleave', function(){
  $('fastswitch_content').get('reveal').toggle();
});

new TabSwapper({
  selectedClass: 'on',
  deselectedClass: 'off',
  tabs: $$('#kontakt li'),
  clickers: $$('#kontakt li a'),
  sections: $$('div.panel'),
  /*remember what the last tab the user clicked was*/
  cookieName: 'tabSetKontakt',
  /*use transitions to fade across*/
  smooth: true,
	smoothSize: true
});

}
};

window.addEvent('domready', Site.start);


