
function addProductsPopup(jquery_pattern) {
	$(document).ready(function() {
		$(jquery_pattern).mouseover(function() {
			var obj_id = $(this).attr('id');
			var product_index = obj_id.substr(8);

			$("#image_" + product_index).css('opacity','0.7');
			$("#image_" + product_index).css('filter','alpha(opacity=70)');
			$("#product-buttons_" + product_index).show();
			$("#product-info_" + product_index).show();

		}).mouseout(function() {
			var obj_id = $(this).attr('id');
			var product_index = obj_id.substr(8);

			$("#image_" + product_index).css('opacity','1');
			$("#image_" + product_index).css('filter','alpha(opacity=100)');
			$("#product-buttons_" + product_index).hide();
			$("#product-info_" + product_index).hide();
		});
	});
}

var f=Math.floor;
var r=Math.random;
var t=window.setTimeout;
var g = function (n) {return (_gaq !== undefined && _gaq.push(['_trackEvent','Offers','Lead',n]));};

