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