this.preview = function(){		
	
	$("#galleria img").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br/>" + this.t : "";
		var w = $(this).attr('width');
		var h = $(this).attr('height');
		$("body").append("<p id='preview'><img src='"+ $(this).attr('rel') +"' /></p>");	
		$("#preview")
		.css("bottom",(e.pageY - h) + "px")
		.css("right",(e.pageX - w) + "px")
		.css('"position','absolute')
			.fadeIn("fast");			

		
    },
	function(){
		this.title = this.t;	
		$("#preview").remove();
    });	
	$("#galleria img").mousemove(function(e){
			var w = $(this).attr('width')*2;
		var h = $(this).attr('height')*2;
		$("#preview")
			.css("top",(e.pageY - h) + "px")
			.css("left",(e.pageX - w) + "px")
			.fadeIn("slow");	
	});			
};

$(document).ready(function(){
	//preview();
});