this.imagePreview = function(){	
		xOffset = 10;
		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 src='"+ this.rel +"' alt='' />"+ c +"</p>");								 
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#preview").remove();
    });	
	$("a.preview").mousemove(function(e){
		$("#preview")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});		
	
	
	
};



this.imagePreview2 = function(){	
		xOffset2 = 180;
		yOffset2 = 5;



$("a.preview2").hover(function(e2){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br/>" + this.t : "";
		$("body").append("<p id='preview2'><img src='"+ this.href +"' alt='' />"+ c +"</p>");								 
		$("#preview2")
			.css("top",(e2.pageY - xOffset2) + "px")
			.css("left",(e2.pageX + yOffset2) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#preview2").remove();
    });	
	$("a.preview2").mousemove(function(e2){
		$("#preview2")
			.css("top",(e2.pageY - xOffset2) + "px")
			.css("left",(e2.pageX + yOffset2) + "px");
	});	
	
};









$(document).ready(function(){
	imagePreview();
	imagePreview2();
});



