$(document).ready(function(){
        var active = 0;
        $("#host-tab-content div.tabicerik:eq("+active+")").show();
        tabPanel_colorize(0);
        
        $("#host-tab-bas span.bas").click(function(){
          var index = $("#host-tab-bas span.bas").index(this);
          if(active != index)
          {
            $("#host-tab-content div.tabicerik:eq("+active+")").hide();
            active = index;
            tabPanel_colorize(active);
            $("#host-tab-content div.tabicerik:eq("+active+")").fadeIn("normal");
          }
        });
      });
      function tabPanel_colorize(index)
      {
        $("#host-tab-bas span.bas").css("background","url(/images/hosttab-ok-pasif.png) no-repeat").css("color","#147");
        $("#host-tab-bas span.bas:eq("+index+")").css("background","url(/images/hosttab-ok.png) no-repeat").css("color","#147");
		
      }

