﻿$(document).ready(function() {
function tabui(tabList,str){
  $(tabList).each(function() {
     var len=$("ul", this).length;
	 var index=str;
	 tabImg(index);
	 $("li" ,this).mouseover(function(){
	    index =   $(tabList).find("li").index(this);
		tabImg(index);
	  });
	 function tabImg(i){
	   $(tabList).find("li")
	    .eq(i).addClass("ui-tab-active")
	    .siblings().removeClass("ui-tab-active");
	   $(tabList).find(".ui-tab-content")
	    .eq(i).show()
		.siblings().hide()
	  };
  });
};
tabui("#demo",0);tabui("#demo1",1);
});

