jQuery(function () {
	jQuery(".hidden-hover").hide();		
	jQuery('.calnk').css('position', 'relative').delegate(".hidden-hover", "click", function() {
		var overlay_link = jQuery(this).prev().attr("href");
		window.location = (overlay_link.substr(0, 6).indexOf('http') == 0)?overlay_link:('https:' == document.location.protocol ? 'https://' : 'http://') + window.location.hostname + overlay_link;
	}).mouseenter(function () {		
		if ( jQuery(this).find(".hidden-hover").is(":visible") ) {
			return;
		}
		jQuery(this).find(".hidden-hover").css({ width: '200px', "position": "absolute", "top": 0, "left": 0}).show();
	}).mouseleave(function () {
		jQuery(this).find(".hidden-hover").delay(1600).hide();
	});
});
