/* JPA LargeImg - based on the script by Alen Grakalic (http://cssglobe.com/post/1695/easiest-tooltip-and-image-preview-using-jquery) */
this.imgFull = function(){	
	$("a.largeimg").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br/>" + this.t : "";
		$("body").append("<p id='largeimg'><img src='"+ this.href +"' alt='' />"+ c +"</p>");								 
		$("#largeimg")
			.animate({opacity:1},250).fadeIn("1000");						
    },
	function(){
		this.title = this.t;	
		$("#largeimg").remove();
    });	
	$("a.largeimg").mousemove(function(e){
		$("#largeimg")
	});
	$("a.largeimg").click(function(){
	return false;
	});			
};

$(document).ready(function(){
	imgFull();
});
