// Tooltips Class
// A superclass to work with simple CSS selectors
var Tooltips = Class.create();
document.alltips=Array();
Tooltips.prototype = {
	initialize: function(selector, options) {
		var tooltips = $$(selector);
		tooltips.each( function(tooltip) {
			new Tooltip(tooltip, options);
		});
	}
};
// Tooltip Class
var Tooltip = Class.create();
Tooltip.prototype = {
	initialize: function(el, options) {
		
		this.el = $(el);
		this.el.toolobj=this;
		document.alltips.push(this);
		this.initialized = false;
		this.setOptions(options);
		
		// Event handlers
		this.showEvent = this.show.bindAsEventListener(this);
		this.hideEvent = this.hide.bindAsEventListener(this);
		this.updateEvent = this.update.bindAsEventListener(this);
		this.updateEvent_delayed = this.update_delayed.bindAsEventListener(this);
		Event.observe(this.el, "mouseover", this.showEvent );
		Event.observe(this.el, "mouseout", this.hideEvent );
		
		// Removing title from DOM element to avoid showing it
		
		if(this.el.title=="")this.el.title=this.el.readAttribute('title_backup');
		this.content = this.el.title.stripScripts().strip();
		
		
		this.el.writeAttribute('title_backup',this.el.title);
		this.el.title = "";

		// If descendant elements has 'alt' attribute defined, clear it
		try{
			this.el.descendants().each(function(el){
				if(Element.readAttribute(el, 'alt'))
					el.alt = "";
			});
		}
		catch(e){}	
	},
	setOptions: function(options) {
		this.options = {
			backgroundColor: '#999', // Default background color
			borderColor: '#666', // Default border color
			textColor: '', // Default text color (use CSS value)
			textShadowColor: '', // Default text shadow color (use CSS value)
			maxWidth: 250,	// Default tooltip width
			align: "left", // Default align
			delay: 750, // Default delay before tooltip appears in ms
			mouseFollow: true, // Tooltips follows the mouse moving
			opacity: .99, // Default tooltips opacity
			appearDuration: .05, // Default appear duration in sec
			roundCorners: false, // Default appear duration in sec
			hideDuration: .05 // Default disappear duration in sec
		};
		Object.extend(this.options, options || {});
	},
	show: function(e) {
		this.xCord = Event.pointerX(e);
		this.yCord = Event.pointerY(e);
		if(!this.initialized){
			this.timeout = window.setTimeout(this.appear.bind(this), this.options.delay);
			if(this.options.mouseFollow)
			Event.observe(this.el, "mousemove", this.updateEvent_delayed);		
		}	
	},
	hide: function(e) {
		if(this.initialized) {
			//this.appearingFX.cancel();
			if(this.options.mouseFollow){
				Event.stopObserving(this.el, "mousemove", this.updateEvent);
				Event.stopObserving(this.el, "mousemove", this.updateEvent_delayed);
			}	
			//new Effect.Fade(this.tooltip, {duration: this.options.hideDuration, afterFinish: function() { Element.remove(this.tooltip) }.bind(this) });
			this.tooltip.setStyle({"display":"none"});
		}
		this._clearTimeout(this.timeout);
		
		this.initialized = false;
	},
	update: function(e){
		this.xCord = Event.pointerX(e);
		this.yCord = Event.pointerY(e);
		this.setup();
	},
	update_delayed: function(e){
		this.xCord = Event.pointerX(e);
		this.yCord = Event.pointerY(e);
		//this.setup();
	},	
	appear: function() {
		
		//this.xCord = Event.pointerX(e);
		//this.yCord = Event.pointerY(e);
		// Building tooltip container
		this.tooltip = new Element("div", { className: "tooltip", style: "display: none" });
		
		var arrow = new Element("div", { className: "xarrow" }).insert('<b class="a1"></b><b class="a2"></b><b class="a3"></b><b class="a4"></b><b class="a5"></b><b class="a6"></b>');
		
		var top = new Element("div", { className: "xtop" }).insert(
			new Element("div", { className: "xb1", style: "background-color:" + this.options.borderColor + ";" })
		).insert(
			new Element("div", { className: "xb2", style: "background-color:" + this.options.backgroundColor + "; border-color:" + this.options.borderColor + ";" })
		).insert(
			new Element("div", { className: "xb3", style: "background-color:" + this.options.backgroundColor + "; border-color:" + this.options.borderColor + ";" })
		).insert(
			new Element("div", { className: "xb4", style: "background-color:" + this.options.backgroundColor + "; border-color:" + this.options.borderColor + ";" })
		);
		
		var bottom = new Element("div", { className: "xbottom" }).insert(
			new Element("div", { className: "xb4", style: "background-color:" + this.options.backgroundColor + "; border-color:" + this.options.borderColor + ";" })
		).insert(
			new Element("div", { className: "xb3", style: "background-color:" + this.options.backgroundColor + "; border-color:" + this.options.borderColor + ";" })
		).insert(
			new Element("div", { className: "xb2", style: "background-color:" + this.options.backgroundColor + "; border-color:" + this.options.borderColor + ";" })
		).insert(
			new Element("div", { className: "xb1", style:"background-color:" + this.options.borderColor + ";" })
		);
		
		var content = new Element("div", { className: "xboxcontent", style: "background-color:" + this.options.backgroundColor + "; border-color:" + this.options.borderColor + 
			((this.options.textColor != '') ? "; color:" + this.options.textColor : "") }).update(this.content);
			
		// Building and injecting tooltip into DOM
		//this.tooltip.insert(arrow).insert(top).insert(content).insert(bottom);
		if(this.options.roundCorners){
			this.tooltip.insert(arrow).insert(top).insert(content).insert(bottom);
		}
		else{
			this.tooltip.insert(arrow).insert(content);
		}
		
		$(document.body).insert({'top':this.tooltip});
		this.el.my_tool_tip=this.tooltip;
		
		
		// Coloring arrow element
		this.tooltip.select('.xarrow b').each(function(el){
			if(!el.hasClassName('a1'))
				el.setStyle({backgroundColor: this.options.backgroundColor, borderColor: this.options.borderColor });
			else
				el.setStyle({backgroundColor: this.options.borderColor });
		}.bind(this));
		
		Element.extend(this.tooltip); // IE needs element to be manually extended
		this.options.width = this.tooltip.getWidth() + 1; // Quick fix for Firefox 3
		this.tooltip.style.width = this.options.width + 'px'; // IE7 needs width to be defined
		
		
		Event.stopObserving(this.el, "mousemove", this.updateEvent_delayed);
		if(this.options.mouseFollow){			
			Event.observe(this.el, "mousemove", this.updateEvent);
		}	
			
		//var e=Event.fire(this.el, "mousemove",true);
		//this.xCord = Event.pointerX(e);
		//this.yCord = Event.pointerY(e);		
		this.setup();
		
		
		//return;	
		this.initialized = true;
		//this.appearingFX = new Effect.Appear(this.tooltip, {duration: this.options.appearDuration, to: this.options.opacity });
		this.tooltip.setStyle({"display":"block"});
	},
	setup: function(){
		// If content width is more then allowed max width, set width to max
		if(this.options.width > this.options.maxWidth) {
			this.options.width = this.options.maxWidth;
			this.tooltip.style.width = this.options.width + 'px';
		}
			
		// Tooltip doesn't fit the current document dimensions
		if(this.xCord + this.options.width >= Element.getWidth(document.body)) {
			this.options.align = "right";
			this.xCord = this.xCord - this.options.width + 20;
			this.tooltip.down('.xarrow').setStyle({left: this.options.width - 24 + 'px'});
		} else {
			this.options.align = "left";
			this.tooltip.down('.xarrow').setStyle({left: 12 + 'px'});
		}
		
		this.tooltip.style.left = this.xCord - 16 + "px";
		this.tooltip.style.top = this.yCord + 16 + "px";
	},
	_clearTimeout: function(timer) {
		clearTimeout(timer);
		clearInterval(timer);
		return null;
	}
};