this.latest_gallery_Images = function()
{
	xOffset = 290;
	yOffset = 20;
		
		
		
	/* END CONFIG */
	$("a.latest_gallery_Images").hover(function(e){
		this.t = this.title;
		this.title = "";	
		var c = (this.t != "") ? "<br/><br/>" + this.t : "";
		$("body").append("<p id='latest_gallery_Images'><img src='"+ this.href +"' class = 'resized_gallery_Preview' />" + c + "<br/><br/>" +"</p>");								 
		$("#latest_gallery_Images")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");						
    },
	function(){
		this.title = this.t;	
		$("#latest_gallery_Images").remove();
    });	
	$("a.latest_gallery_Images").mousemove(function(e){
		$("#latest_gallery_Images")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};


// starting the script on page load
$(document).ready(function(){
	latest_gallery_Images();
});
