﻿
$(document).ready(function(){

	$(".link a").hover(function() {
	
		var offset = $(this).offset();
		
		//getting height and width of the div to show
	    var height = $(this).height();
	    var width = $(this).width();
	    
	    //calculating offset for displaying popup message
	    var leftVal=offset.left + width;
	    var topVal=offset.top; 
 
		//alert(height + " - " + width + " - " + offset.left +  " - " + offset.top + " - " + leftVal + " - " + topVal);
		
		$(this).next("div").css({left:leftVal,top:topVal});
		
		$(this).next("div").animate({opacity: "show", left: '-=10'}, "slow");
	}, function() {
		$(this).next("div").animate({opacity: "hide", left: '+=20'}, "slow");
	
	});

});
