
this.toptip = function(){	
	var xOffset, yOffset;
	/* screen height and width */
	var bodywidth = $(window).width();
		
	$(".toptips_image").hover(function(e){

		var image = $(this).attr("rel");
		if(typeof(image)!="undefined"){
		$("body").append("<div id='tip_image'><img src='"+ image +"' /></div>");
		
		var imgwidth = $("#tip_image").width();

		xOffset=10;

		if((bodywidth - e.pageX) < (bodywidth / 2)){
			yOffset = -30 - imgwidth;
		} else {
			yOffset = 30;
		}
		
		$("#tip_image")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");
		}
    },
	function(){
		$("#tip_image").remove();
    });

    /* moving image with the cursor */
	$(".toptips_image").mousemove(function(e){
		$("#tip_image")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});			
};
