// JavaScript Document
$(document).ready
(
	function()
	{
		$("div[id='cart-item-option']").hover
		(
			function()
			{
				$("div.truncated_full_value", this).addClass("show");
			},
			function()
			{
				$("div.truncated_full_value", this).removeClass("show");
			}		
		);	
	}
);


window.onerror = function(sMessage, sUrl, sLine)
{
	
	$.post
	(
		SITEURL+"/Manage/saveJSError",
		{ msg: sMessage, url: sUrl, line: sLine, location:location.href },
		function(data)
		{

		}
	);

	
	window.onerror = null; 
	return true; 
};
