$(document).ready(function() {

	var currentCompareItemIds = [];

	$("#newgen-cmp-btn").click(function(e){
		e.preventDefault();

		$.ajax({
			async: false,
			type: 'POST',
			url: "/banaozel/clearCurrentCompareItems.do"
		});

		$("#new-gen-items .ccomp:checked").each(function(){
			var _itemId = $(this).val();
			$.ajax({
				async: false,
				type: 'POST',
				url: "/banaozel/addToCurrentCompareItems.do",
				data: {itemId: _itemId}
			});
			currentCompareItemIds.push(_itemId);
		});

		if(currentCompareItemIds.length < 2){
			alert('En az iki ürün seçmelisiniz...');
			return false;
		} else {
			window.location.href = "/banaozel/compareItems.do";
		}
		
	});


});

