var isIE = (document.all) ? true : false;

var Class = {
  create: function() {
    return function() {
      this.initialize.apply(this, arguments);
    }
  }
}
Object.extend = function(destination, source) {
    for (var property in source) {
        destination[property] = source[property];
    }
    return destination;
}
//ie only
var TransView = Class.create();
TransView.prototype = {
  initialize: function(arrList, idShow, idList, idText, options) {
    if(!arrList || arrList.length == 0) return;
    
    var oThis = this, oShow = $(idShow), oList = $(idList), oText = $(idText), img = document.createElement("img"), a = document.createElement("a");
    
    //初始化显示区域
    img.src = "javascript:;"; a.target = "_blank"; if(isIE){ img.style.filter = "revealTrans(duration=1)"; };
    a.appendChild(img); oShow.appendChild(a);

    this._oList = oList;
    this._oText = oText;
    this._list = arrList;
    this._img = img;
    this._a = a;
    this._timer = null;
    this._index = -1;
    
    this.SetOptions(options);
    
    this.Time = Math.abs(this.options.Time);
    this.Auto = !!this.options.Auto;
    this.ClassOn = this.options.ClassOn;
    this.ClassOff = this.options.ClassOff;
    
    this.Set();
  },
  //设置默认属性
  SetOptions: function(options) {
    this.options = {//默认值
      ClassOn:        "",//显示时样式
      ClassOff:        "",//不显示时样式
      Auto:            true,//是否自动切换
      Time:            3000//切换时间
    };
    Object.extend(this.options, options || {});
  },
  //设置
  Set: function() {
    this.Each(function(list, i){
//    	var _num = new Element('div');
        var _num_a = new Element('a',{'href':'javascript:void(0)'}).update(i+1);
        var _num_li = new Element('li');
    	
        var oThis = this, img = document.createElement("img");
        
        img.src = list["img"];
        img.alt = list["text"];
        /*
		_num_a.onclick=function(){
			
//			oThis.Stop();
			var _t_a = $('idPicShow').getElementsByTagName('a');
			_t_a[0].href=list["url"];
			var _t_img = _t_a[0].getElementsByTagName('img');
			_t_img[0].src = img.src;
//			oThis.Run();
			oThis._timer = setTimeout(function(){ oThis.Run(); }, oThis.Time);
			if(i>0){
				oThis.Show(i-1);
			}else{
				oThis.Show(i);
			}
			
		}
		*/
		
        _num_a.onmouseover = img.onmouseover = function(){ oThis.Show(i); };
        _num_a.onmouseout = img.onmouseout = function(){ if(oThis.Auto){ oThis._timer = setTimeout(function(){ oThis.Run(); }, oThis.Time); } };
        
        this._list[i]["obj"] = img;
        _num_li.appendChild(_num_a);
//        _num.appendChild(_num_li);
        this._oList.appendChild(_num_li);
//        this._oList.appendChild(img);
    });
    
    this.Run();
  },
  //显示
  Show: function(i) {
    this.Stop();
    
    if(i < 0 || i >= this._list.length) i = 0;

    if(isIE){
        this._img.filters.revealTrans.Transition = Math.floor(Math.random() * 23);
        this._img.filters.revealTrans.apply();
        this._img.filters.revealTrans.play();
    }
   
    this._img.src = this._list[i]["img"];
    this._img.alt = this._list[i]["text"];
    
    if(!this._list[i]["url"]){
//      this._oText.innerHTML = this._list[i]["text"];
        this._a.removeAttribute("href");
    } else {
    	var _t_a = this._oList.getElementsByTagName('a');
    	for(var _kl=0;_kl<_t_a.length;_kl++){
    		_t_a[_kl].className='';
    	}
    	_t_a[i].className='sel';
//      this._oText.innerHTML= "<a href='" + this._list[i]["url"] + "' target='_blank'>" + this._list[i]["text"] + "</a>";
        this._a.href = this._list[i]["url"];
    }
    
    if(this._index >= 0) this._list[this._index]["obj"].className = this.ClassOff;
    this._list[i]["obj"].className = this.ClassOn;
    this._index = i;
  },
  //开始
  Run: function() {
    this.Show(this._index + 1);
    if(this.Auto){ var oThis = this; this._timer = setTimeout(function(){ oThis.Run(); }, oThis.Time); }
  },
  //停止
  Stop: function() {
    clearTimeout(this._timer);
  },
  //
  Each:function(fun) {
    for (var i = 0, len = this._list.length; i < len; i++)
        fun.call(this, this._list[i], i);
  },
  //添加
  Add:function(img, text, url) {
    this.Stop();
    var len = this._list.length;
    this._list[len] = {'img': img, 'text': text, 'url': url }
    this._oList.innerHTML = "";
    
    this.Set();
  },
  //
  Delete:function(index) {
    index--;
    if(index < 0 || index > this._list.length) return;
    
    this.Stop();
    var _arr = [];
    var m =0;
    
    this.Each(function(list, i){ if(i != index)    _arr[m++] = list; });
    this._list = _arr;
    this._oList.innerHTML = "";
    
    this.Set();
  }
};