$(function() {
	var $special = $('#hp-special');
	
	
	var offset = $special.offset();
	if (match = $('#hp-special .product').attr('src').match(/id=([0-9]+)/)) {
		$(document.body).append(
			$('<a href=""></a>').
				attr({
					id:   'hp-special-link',
					href: HTTP_SERVER + '/product_info.php?products_id=' + match[1]
				}).
				css({
					position: 'absolute',
					left: offset.left,
					top:  offset.top,
					width:  $special.width(),
					height: $special.height()
				})
		);
	}
});
