$(document).ready(function(){
	imagePreview(); // tooltip
	
	
}); 

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