$(function($){
	$(document).pngFix();

	
	
	$('a.nyroModal').each(function() {
		$(this).click(function(e) {
			e.preventDefault();
			$.nyroModalManual({
				modal: true,
				content: $(this).html()
			});
			return false;
		});
	});

});

function clearForm(form) {
	$(form).each(function() {
		var type = this.type;
		var tag = this.tagName.toLowerCase(); // normalize case
		if (type == 'text' || type == 'password' || tag == 'textarea')
			this.value = "";
		else if (type == 'checkbox' || type == 'radio')
			this.checked = false;
		else if (tag == 'select')
			this.selectedIndex = -1;
	});
};

function basketAdd(id) {
	$.post('/catalog/basketadd/',{
		id: id
	},function(data) {
		if(data) {
			$('#top .basket span.t').html('').html(data);
			$('.popupBasket').show().fadeOut(3000);
		}
	});
}

function compare(id) {
	$.post('/catalog/compare/',{
		id: id
	},function(data) {
		if(data) {
			$('.compareAdd').html('<a href="javascript:;" onclick="compareDel(' + id + ')">Удалить из сравнения</a>');
			$('.compareItem').html(data);
		}
	});
}

function compareDel(id) {
	$.post('/catalog/comparedel/',{
		id: id
	},function(data) {
		if(data) {
			$('.compareAdd').html('<a href="javascript:;" onclick="compare(' + id + ')">Добавить к сравнению</a>');
			$('.compareItem').html(data);
		}
	});
}
