/***************************/
//@Author: Adrian "yEnS" Mato Gondelle & Ivan Guardado Castro
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/
jQuery.fn.tipbox=function(content,allowHtml,className){jQuery.fn.tipbox.created.id="tipBox";jQuery("body").append(jQuery.fn.tipbox.created);var tipBox=jQuery(jQuery.fn.tipbox.created);tipBox.css({"position":"absolute","display":"none"});function tipBoxShow(e){tipBox.css({"display":"block","top":e.pageY+16,"left":e.pageX})}function tipBoxHide(){tipBox.css({"display":"none"})}this.each(function(){jQuery(this).mousemove(function(e){tipBoxShow(e);if(allowHtml)tipBox.html(content);else tipBox.text(content);tipBox.removeClass();if(className)tipBox.addClass(className)});jQuery(this).mouseout(function(){tipBoxHide()})})};jQuery.fn.tipbox.created=document.createElement("div");
