  $(document).ready(function() {
    (function( tabSwitcher ){
	    function tabSwitcher( e ){
		    var tabsContainer = $( this.hash ).parent();
		    $( '.target', tabsContainer ).removeClass( 'target' );
		    $( '.contents .active', tabsContainer ).removeClass( 'active' );

		    $( this.parentNode ).addClass( 'active' );
		    $( this.hash ).addClass( 'target' );
		    this.hideFocus=1;
		    e.preventDefault();
	    }
	    $( 'a[href^=#]' ).click( tabSwitcher );
    })();
    
    });