﻿document.write('<link rel="stylesheet" type="text/css" href="./slide.css" />');
Event.observe(window, "load", function(){
new Insertion.Bottom('c_glider', '<div id="c_coverSection"><a href="#" id="c_coverSectionLeftBtn" onclick="c_glider.previous();c_glider.stop();return false;">Prev</a>\n<a href="#" id="c_coverSectionRightBtn" onclick="c_glider.next();c_glider.stop();return false;">Next</a></div><br style="clear:both;" />');
document.getElementById("c_coverSectionLeftBtn").style.display = "none";
}, false);

Glider = Class.create();
Object.extend(Object.extend(Glider.prototype, Abstract.prototype), {
	initialize: function(wrapper, options){
	    this.scrolling  = false;
	    this.wrapper    = $(wrapper);
	    this.scroller   = this.wrapper.down('div.scroller');
	    this.sections   = this.wrapper.getElementsBySelector('div.section');
	    this.options    = Object.extend({ duration: 1.0, frequency: 10.3 }, options || {});

	    this.sections.each( function(section, index) {
	      section._index = index;
	    });    

	    this.events = {
	      click: this.click.bind(this)
	    };

	    this.addObservers();
			if(this.options.initialSection) this.moveTo(this.options.initialSection, this.scroller, { duration:this.options.duration });  // initialSection should be the id of the section you want to show up on load
			if(this.options.autoGlide) this.start();
	  },
	
  addObservers: function() {
    var controls = this.wrapper.getElementsBySelector('div.controls a');
    controls.invoke('observe', 'click', this.events.click);
  },	

  click: function(event) {
		this.stop();
    var element = Event.findElement(event, 'a');
    if (this.scrolling) this.scrolling.cancel();
    
    this.moveTo(element.href.split("#")[1], this.scroller, { duration:this.options.duration });     
    Event.stop(event);
  },

	moveTo: function(element, container, options){
			this.current = $(element);

			Position.prepare();
	    var containerOffset = Position.cumulativeOffset(container),
	     elementOffset = Position.cumulativeOffset($(element));

		  this.scrolling 	= new Effect.SmoothScroll(container, 
				{duration:options.duration, x:(elementOffset[0]-containerOffset[0]), y:(elementOffset[1]-containerOffset[1])});
		  return false;
		},

  goTo: function(index) {
    this.moveTo(this.sections[index], this.scroller, {duration: this.options.duration}); 
    },
	
  next: function(){
    if (this.current) {
      var currentIndex = this.current._index;
      var nextIndex = (this.sections.length - 1 == currentIndex) ? 0 : currentIndex + 1;      
    } else var nextIndex = 1;

    this.moveTo(this.sections[nextIndex], this.scroller, { 
      duration: this.options.duration
    });
    if (currentIndex == 6) {
	v_employee.f_setStyle(0);
    } else v_employee.f_setNum('+');

  },
	
  previous: function(){
    if (this.current) {
      var currentIndex = this.current._index;
      var prevIndex = (currentIndex == 0) ? this.sections.length - 1 : 
       currentIndex - 1;
    } else var prevIndex = this.sections.length - 1;
    
    this.moveTo(this.sections[prevIndex], this.scroller, { 
      duration: this.options.duration
    });
v_employee.f_setNum('-');


  },

	stop: function()
	{
		clearTimeout(this.timer);
	},
	
	start: function()
	{
		this.periodicallyUpdate();
	},
		
	periodicallyUpdate: function()
	{ 
		if (this.timer != null) {
			clearTimeout(this.timer);
			this.next();
		}
		this.timer = setTimeout(this.periodicallyUpdate.bind(this), this.options.frequency*1000);
	}

});

Effect.SmoothScroll = Class.create();
Object.extend(Object.extend(Effect.SmoothScroll.prototype, Effect.Base.prototype), {
  initialize: function(element) {
    this.element = $(element);
    var options = Object.extend({
      x:    0,
      y:    0,
      mode: 'absolute'
    } , arguments[1] || {}  );
    this.start(options);
  },
  setup: function() {
    if (this.options.continuous && !this.element._ext ) {
      this.element.cleanWhitespace();
      this.element._ext=true;
      this.element.appendChild(this.element.firstChild);
    }
   
    this.originalLeft=this.element.scrollLeft;
    this.originalTop=this.element.scrollTop;
   
    if(this.options.mode == 'absolute') {
      this.options.x -= this.originalLeft;
      this.options.y -= this.originalTop;
    } 
  },
  update: function(position) {   
    this.element.scrollLeft = this.options.x * position + this.originalLeft;
    this.element.scrollTop  = this.options.y * position + this.originalTop;
  }
});

var v_employee = {
	v_aTag : new Array(),
	v_cNum : 0,

	f_setFunction : function() {
		v_employee.v_aTag = $("c_timeChartSection").getElementsByTagName("a");

		for(var i = 0; i < v_employee.v_aTag.length; i ++) {
			if(v_IE) v_employee.v_aTag[i].setAttribute("onmouseover", new Function("v_employee.f_setStyle(" + i + ");c_glider.goTo(" + i + ");c_glider.stop();return false;"));
			if(!v_IE) v_employee.v_aTag[i].setAttribute("onmouseover", "v_employee.f_setStyle(" + i + ");c_glider.goTo(" + i + ");c_glider.stop();return false;");
		}
	},

	f_setNum : function(o) {
		var v_num;
		if(o == "+") v_num = 1;
		if(o == "-") v_num = -1;
		v_employee.v_cNum += v_num;
		v_employee.f_ckNum();
		v_employee.f_setStyle(v_employee.v_cNum);
	},

	f_ckNum : function() {
		switch(v_employee.v_cNum) {
			case 0 :
				if(v_IE) {
					$("c_coverSectionLeftBtn").style.cssText = "display:none;";
					$("c_coverSectionRightBtn").style.cssText = "display:block;";
				}
				if(!v_IE) {
					$("c_coverSectionLeftBtn").setAttribute("style", "display:none;");
					$("c_coverSectionRightBtn").setAttribute("style", "display:block;");
				}
				break;
			case 6 :
				if(v_IE) {
					$("c_coverSectionLeftBtn").style.cssText = "display:block;";
					$("c_coverSectionRightBtn").style.cssText = "display:none;";
				}
				if(!v_IE) {
					$("c_coverSectionRightBtn").setAttribute("style", "display:none;");
					$("c_coverSectionLeftBtn").setAttribute("style", "display:block;");
				}
				break;
			default :
				if(v_IE) {
					$("c_coverSectionLeftBtn").style.cssText = "display:block;";
					$("c_coverSectionRightBtn").style.cssText = "display:block;";
				}
				if(!v_IE) {
					$("c_coverSectionLeftBtn").setAttribute("style", "display:block;");
					$("c_coverSectionRightBtn").setAttribute("style", "display:block;");
				}
				break;
		}
	},

	f_setStyle : function(num) {
		for(var i = 0; i < v_employee.v_aTag.length; i ++) {
			if(i == num) {
				v_employee.v_aTag[i].setAttribute(v_class, "c_on");
				v_employee.v_cNum = i;
			}
			if(i != num) v_employee.v_aTag[i].setAttribute(v_class, "blank");
		}
		v_employee.f_ckNum();
	}
};
/*
window.addEventListener("load", v_employee.f_ckNum, true);
*/

