function toggleClass (id, id3) {
    if (document.getElementById(id3).style.display=='none'){
        document.getElementById(id3).style.display='block';
        document.getElementById(id).className='active';
    } else {
        document.getElementById(id3).style.display='none';
        document.getElementById(id).className='';
    }
}

function selectListColor(itemId, modItem) {
	var data = modItem.split('|');
	//document.getElementById('itemCart'+itemId).rel = itemId+'_'+data[0];
	if (data[1]) {
		$('#itemImg'+itemId).attr('src','/img/catalog/item_'+data[0]+'_m.'+data[1]);
	}
}
function selectColor(itemId, modItem) {
	var data = modItem.split('|');
	document.getElementById('itemCart'+itemId).rel = itemId+'_'+data[0];
	if (data[1]) {
		document.getElementById('itemImg'+itemId).src = '/img/catalog/item_'+data[0]+'_m.'+data[1];
	}
}
function selectItemColor(itemId, modItem) {
	var data = modItem.split('|');
	document.getElementById('itemCart'+itemId).rel = itemId+'_'+data[0];
	if (data[1]) {
		document.getElementById('itemImg'+itemId).src = '/img/catalog/item_'+data[0]+'_s.'+data[1];
		document.getElementById('mainImgRef').href = '/img/catalog/item_'+data[0]+'.'+data[1];
	}
}
/*
function selectItemColor(itemId, imgId, imgExt) {
	if (imgExt) {
		document.getElementById('mainImgRef').href = '/img/catalog/item_'+imgId+'.'+imgExt;
		document.getElementById('mainImg').src = '/img/catalog/item_'+imgId+'_s.'+imgExt;
		$('a.tozoom').fancyzoom({Speed:1000});
	}
	document.getElementById('cartRef').rel = itemId+'_'+imgId;
}
/**/
function AddItemToCart(id_item) {
	$.getJSON("/catalog/cart/additem/"+id_item+"/ajax/",
		function(data){
			//console.log(data);
			if (data.msg) {
				$('#cart_count_place').text(data.count);
				$('#cart_summ_place').text(data.summ);
				//alert(data.msg);
				$('#cart_text').load('/catalog/cart/?ajax=1', function(){$('#div_cart').show();});
				window.location='#div_cart';
				$('#cart_item_preview .itemName a:first').html(data.item_name);
				$('#cart_item_preview .itemName a:first').attr('href',data.item_url);
				$('#cart_item_preview .itemName a:first').attr('href',data.item_url);
				$('#cart_item_preview img:first').attr('src',data.item_img_url);
				$('#cart_item_preview .itemPrice:first').html(data.item_price);
				$('#cart_item_preview').slideDown( 400, function(){
					sleep(1000);$('#cart_item_preview').slideUp( 400); 
					} 
				);
			}
		}
	);
}
