this.imagePreview = function(){	
	yOffset = 30;

	$("a.preview").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br/>" + this.t : "";
		$("body").append("<p id='preview'><img width='100px' src='"+ this.href +"' alt='Bildvorschau wird geladen...' />"+ c +"</p>");								 
		var setTop = (e.pageY);
		var setLeft = (e.pageX - $("#preview").attr('offsetWidth') - 200);
		if(setTop<50) { setTop = 50; }
		$("#preview")
			.css("top", setTop + "px")
			.css("left", setLeft + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#preview").remove();
    });	
	
};


$(document).ready(function(){
	imagePreview();
});
