 function tabIt(container, defaultSlt, focusCss, flurCss){
     container.tabs(defaultSlt || 1, {
        fxAutoHeight: true,
        click : function(clicked, show, hide){
          $('[@href="#' + show.id + '"]').find('span:eq(0)').css(focusCss)
           $('[@href="#' + hide.id + '"]').find('span:eq(0)').css(flurCss || {background : 'none'})
        }
      }).find('a > span[@loc]').click(function(){
         window.location.href = $(this).attr('loc')
      })
      container.each(function(){
        $(this).find('a > span:eq(' + ((defaultSlt || 1) - 1) + ')').css(focusCss);
      });
    }
		
