this.appear = function(){	
	
	
	var offset_Y_delta = 40;
	var offset_X_delta = 208;
	
	$( "a.box_link" ).hover( function( e ){
		
		this.t = this.title;
		this.title = "";
		
		var c = ( this.t != "" )? "<br/>" + this.t : "";
		var offset = $( 'td.box_' + $( this ).attr( 'name' ) + '_title' ).offset();
		
		$( "body" ).append( "<div dir='rtl' id='tooltip' style='z-index:10; width:197px; height:0px;' align='center'><p style='width:187px; height:88px; font:normal 13px arial; color:#636363; background:transparent url(" + this.rel + "); top center no-repeat'><img src='images/hp_art_mask.gif' width='187' height='88' alt='' />" + c + "</p></div>" );								 
		$( "#tooltip" ).css( "top", ( offset.top + offset_Y_delta ) + "px" ).css( "left", ( offset.left - offset_X_delta ) + "px" ).animate( { height: "+=140px" }, { queue: false, duration: 750, easing: 'easeOutQuint' } );
	},
	
	function(){
		
		this.title = this.t;
		$("#tooltip").remove();
	});
};


