﻿(function(){YAHOO.util.Event.onDOMReady(function(){
    var j = 2;
    while (document.getElementById('tab_' + j) != null) {
        var tabView = new YAHOO.widget.TabView('tab_' + j);
		tabView.on('contentReady',function(){
			var _this = this;
			var tabs = _this.getElementsByClassName(tabView.TAB_PARENT_CLASSNAME)[0].getElementsByTagName('li');
			for (var i = 0; i < tabs.length; i++) {
				this.getTab(i).on('mouseover', function(e){
				   _this.selectTab(_this.getTabIndex(this));
			    });
			} // end for
		});
		j++;
    } // end while
        var tabView = new YAHOO.widget.TabView('tab_1');
		tabView.on('contentReady',function(){
			var _this = this;
			var tabs = _this.getElementsByClassName(tabView.TAB_PARENT_CLASSNAME)[0].getElementsByTagName('li');
			for (var i = 0; i < tabs.length; i++) {
				this.getTab(i).on('onclick', function(e){
				   _this.selectTab(_this.getTabIndex(this));
			    });
			} // end for
		});
	
})})();