$(function ()
{
	var cmpForm	= $('#compareForm');
	var checkBoxes = $('input:checkbox[name="item"]', cmpForm);
	$('.doCompare', cmpForm).click (function ()
	{
		//alert("submitting");
		cmpForm.submit ();
		return (false);
	});
	checkBoxes.click (function (clicked)
	{
		if (checkBoxes.filter (':checked').length > 3)
		{
			alert ('Please do not select more than 3 items to compare');
			this.checked	= false;
		}
	});

	// thumbPop for result pages, shows larger image on thumbnail rollover
	$("img[src*='.jpg']", cmpForm).thumbPopup({
		imgSmallFlag: "/thumbnails",
		imgLargeFlag: ""
	});

	$("img[src*='.jpg']", cmpForm).thumbPopup({
		imgSmallFlag: "/thumbnails",
		imgLargeFlag: ""
	});

});
