$(document).ready(function() {
	$('.popup').hover(
		function(){
			var overlay = $($(this).attr('rel'));
			overlay.css({ top: $(this).offset().top - 100, left: ($(this).offset().left + 125) });
			var timeOutId = setTimeout(function(){overlay.show();}, 1500);
			$(overlay).data('timeoutId', timeOutId);
		},
		function(){ 
			var overlay = $($(this).attr('rel'));
			overlay.hide();
			clearTimeout(overlay.data('timeoutId'));
		});
});
