window.addEvent('domready',function(){
	
	//tabswapper functionality
	new TabSwapper({
	  selectedClass: 'current',
	  deselectedClass: 'off',
	  tabs: $$('#tabbed-nav .tabSet li'),
	  clickers: $$('#tabbed-nav .tabSet li a'),
	  sections: $$('div.panelSet div.tabbed-info'),
	  /*remember what the last tab the user clicked was*/
	  /*cookieName: 'tabSetExample',*/
	  /*use transitions to fade across*/
	  smooth: true,
		smoothSize: true
	});										
})