/*-----------------------------------------------------------------------------------------------*/
/*                                      SIMPLE jQUERY TOOLTIP                                    */
/*                                      VERSION: 1.1                                             */
/*                                      AUTHOR: jon cazier                                       */
/*                                      EMAIL: jon@3nhanced.com                                  */
/*                                      WEBSITE: 3nhanced.com                                    */
/*-----------------------------------------------------------------------------------------------*/


	function reCatchEvent(){
		$('.crossToolTip').hover(
			function() {
			
			_title = this.title;
			if(!$(this).children().hasClass('toolTipWrapper')){
				$(this).append(
					'<div class="toolTipWrapper">'
						+'<div class="toolTipTop"></div>'
						+'<div class="toolTipMid">'
							 + _title
						+'</div>'
						+'<div class="toolTipBtm"></div>'
					+'</div>'
				);
			}
			
			this.width = $(this).width();
			$(this).find('.toolTipWrapper').css({left:this.width-38})
			$(this).find('.toolTipWrapper').fadeIn(300);
			this.title = '';
		},
		function() {
			$(this).find('.toolTipWrapper').fadeOut(100);
			//this.title = $('.toolTipWrapper').find('.toolTipMid').html();
			//$(this).children().remove();
			}
		);
	}