jQuery.fn.tipbox = function (content, className){

	// CREATE OBJECT
	jQuery.fn.tipbox.created.id = "tipBox";
	$("body").append(jQuery.fn.tipbox.created);
	
	// SET INITIAL STYLE
	var tipBox = $(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"});
	}
	
	// Events For Each Element
	
	this.each(function(){
	
		$(this).mousemove(function(e){
		   tipBoxShow(e);
		   tipBox.html("<div class='tipContent'>" + content + "</div>");
		   tipBox.removeClass();
		   if(className) tipBox.addClass(className);
		});
		
		$(this).mouseout(function(){
			tipBoxHide();
		});
	
	});

};

jQuery.fn.tipbox.created = document.createElement("div");