﻿$(document).ready(function(){
		
		var count_hide = 3;
		if ($(".compare-product:eq(0)").css("display") != "block")
		{
			count_hide= count_hide-1;
			}
		if ($(".compare-product:eq(1)").css("display") != "block")
		{
			count_hide= count_hide-1;
			}
		if ($(".compare-product:eq(2)").css("display") != "block")
		{
			count_hide= count_hide-1;
			}
		if (count_hide == 0)
		{
			$('.compare-list span').animate({ opacity: 'hide' }, "slow");
			}
		
		
		$(".compare-del-btn").click(function(){
		$(this).parents(".compare-product").animate({ opacity: 'hide' }, "slow");
		
		
		var count_hide = 2;
		if ($(".compare-product:eq(0)").css("display") != "block")
		{
			count_hide= count_hide-1;
			}
		if ($(".compare-product:eq(1)").css("display") != "block")
		{
			count_hide= count_hide-1;
			}
		if ($(".compare-product:eq(2)").css("display") != "block")
		{
			count_hide= count_hide-1;
			}
			
			
			
		if (count_hide == 0)
		{
			$('.compare-list span').animate({ opacity: 'hide' }, "slow");
			}
	});
	

});
