
 
this.imagePreview = function(){	
			
	xOffset = 5;
	yOffset = 20;		
	
	$("a.preview").hover(function(e){				
		this.t = (this.title == "") ? this.t : this.title;
		this.title = "";			
		$("body").append("<p id='preview'><img src='"+ this.t +"' alt='' /></p>");								 
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){		
		$("#preview").remove();
    });	
	$("a.preview").mousemove(function(e){
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
				
};




this.imagePreviewNoUrl = function(){	

	xOffset = 5;
    yOffset = 20;		


	$("img.imagePreviewNoUrl").hover(function(e){		    	    
	    this.t = (this.title == "") ? this.t : this.title;
	    this.title = "";
		$("body").append("<p id='imagePreviewNoUrl'>"+this.t+"</p>");								 
		$("#imagePreviewNoUrl")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");							    
    },
	function(){			    
		$("#imagePreviewNoUrl").remove();
    });	
	
	$("img.imagePreviewNoUrl").mousemove(function(e){
		$("#imagePreviewNoUrl")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
			
	
};
