(function( tabSwitcher ){
	function tabSwitcher( e ){
		var tabsContainer = $$( this.hash )[0].parentNode.parentNode;
		$( tabsContainer ).getElements( '.target' ).removeClass( 'target' );
		$( tabsContainer ).getElements( '.contents .active' ).removeClass( 'active' );

		$( this.parentNode ).addClass( 'active' );
		$$( this.hash ).addClass( 'target' );
		this.hideFocus=1;
		e.preventDefault();
	}
	$$( 'a[href^=#]' ).addEvent( 'click', tabSwitcher );
})()

