$(document).ready(function() {

	$('tr.spec-value').hover(function() {
			$(this).css('background-color', '#f6f5ee');
			$(this).children("td").not("td.tablo_baslik").css('background-color', '#f6f5ee');
	},
	function() {
			$(this).css('background-color', '#fff');
			$(this).children("td").not("td.tablo_baslik").css('background-color', '#fff');
	});

 $("div.karsilastirma_cikar").click(function(e){
		e.preventDefault();

		if(currentCompareItemIds.length > 2){
			var colIndex = $(this).closest("td").prevAll("td").length;
			$(this).parents("table").find("tr").each(function(){
				$(this).find("td:eq("+colIndex+")").remove();
			});

			var _itemId = parseInt($(this).metadata().itemId);
			$.post("/banaozel/delFromCurrentCompareItems.do", {itemId: _itemId});
			currentCompareItemIds = _.without(currentCompareItemIds, _itemId);

		} else{
				alert('En az iki ürün bırakmalısınız...');
		}
  });


});

