$(document).ready(function(){
	$(window).load(function() {
		load_category_item(17);
	});
	$('.productItemWrapper').live('mouseenter', function(){
		if ($(this).children(".itemOpening").val()=="close"){
			var duration = 600;
			$(this).children(".itemOpening").val("opening");
			$(this).children(".productItem").css("z-index", "10");
			$(this).children(".productItem").animate({top: "-22px", left: "-33px"}, duration);
			$(this).children(".productItem").children(".itemImage").animate({width: "286px", height: "195px"}, duration);
			$(this).children(".productItem").children(".itemName").fadeIn(duration);
		}
	});

	$('.productItemWrapper').live('mouseleave', function(){
		var duration = 200;
		var itemObject = $(this);
		itemObject.children(".productItem").children(".itemName").css("display", "none");
		itemObject.children(".productItem").css("z-index", "1");
		itemObject.children(".productItem").animate({top: "0px", left: "0px"}, duration);
		itemObject.children(".productItem").children(".itemImage").animate({width: "220px", height: "150px"}, duration, function() {
			itemObject.children(".itemOpening").val("close");
			//alert($(this).parent().parent().children(".itemOpening").val());
		});
	});
});

function load_category_item(categoryOrdering){
	$.ajax({
		url: 'http://www.kgh.co.il/ajax/load_category_item',
		type: "post",
		data: { categoryOrdering: categoryOrdering, parentID: "2965"},
		success: function(data){
			if (data!="end"){
				$(".moreItems").append(data);
				load_category_item(categoryOrdering+1);
			} else $(".loadingItems").fadeOut();
		}
	});
}