$(function() {
	
	var anchor = '<a id="aHover" href="events.php" style="background: url(http://pharmsample.com/images/1px.png); position: absolute;">&nbsp;</a>';
	$('body').append(anchor);
	
	/*
	setTimeout(function() {
		$('#aHover').relPosTo({ target: $('#aTarget') });
	}, 1000);
	*/
	
	moveLinkOverlay();
	
	$(window).resize(function() {
		moveLinkOverlay();
	});
	
	$('#aHover').css({		
		'width' : 872,
		'height' : 331,
		'z-index' : 99,
		'display' : 'inline-block',
		//'border': '1px solid lime'
	});

	
});


function moveLinkOverlay() {
	$('#aHover').css({
		'top' : $('#aTarget').offset().top,
		'left' : $('#aTarget').offset().left
	});
}
