﻿$(document).ready(function()
{
    $('.blurredPrice').tooltip({
        track: true,
        delay: 0,
        showURL: false,
        showBody: " - ",
        extraClass: "roundedToolTip",
        fixPNG: true,
        top: 8,
        left: -74
    });
    $('#matrixTools').accordion('activate', 1);
});
function removeSelectedItem(productId) 
{
	var lurl = location.href;
	var surl = "/UserSelection.ashx";
	if (lurl.indexOf("localhost") > -1) {
		surl = "/biocompare/UserSelection.ashx";
	}

	$.ajax({
		type: "POST",
		url: surl,
		data: "productId=" + productId + "&remove=true",
		success: function(result) {
			$("#selectionContainer").empty();

			$("#selectionContainer").html(result);
			tb_init('a.thickbox, area.thickbox, input.thickbox');
		},
		error: function(XMLHttpRequest) {
		}
	});
}
