$(function(){
//photo_bar("鏁板瓧鏁堟灉","鍥剧墖鏁堟灉");
 photo_bar("ul.spc li",".product_text u");
})

//缈婚〉鏉℃帶鍒跺櫒
var photo_bar = function(obj,show_obj){
  $(obj).click(function(){
    var num =$(this).children().attr("xtype");
	num = num+"_tab";
	//alert(num);
	$(show_obj).hide();
	$(obj).removeClass("di");
	//var b = show_obj+"[xtype='"+[xtype=num]+"']";
	//alert(b);
	$(show_obj+"[xtype='"+num+"']").show();
	//alert(show_obj+"[xtype='"+num+"']");
	$(this).addClass("di");
  });

};




  var next = function(){
  if($("ul.spc li.di").next().html()==null)
  {
  $("ul.spc li:eq(0)").click();
  }
  else{
  $("ul.spc li.di").next().click();
  }
 // alert(obj);
  };
  //setInterval(next(),1000);
  setInterval('next()',4000);

