this.imagePreview = function(){	
		
    xOffset = 10;
    yOffset = 30;
    
	jQ("img.preview").hover(function(e){
		this.t = this.title;
                var x = jQ(this).attr("name");
                if(x != '') {
                  jQ("body").append("<p id='preview'><img src='"+ x +"' alt='Žádný dostupný obrázek' /></p>");
                  jQ("#preview")
                          .css("top",(e.pageY - xOffset) + "px")
                          .css("left",(e.pageX + yOffset) + "px")
                          .fadeIn("fast");
                }
    },
	function(){
		this.title = this.t;	
		jQ("#preview").remove();
    });	
	jQ("strong.preview").mousemove(function(e){
		jQ("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};