$(function() {
	$('.pricelist-elements .blockrow .c_details > span').live('click', function() {
		var all = $(this).parent().parent().find('ul.fields').children();
		var toggleable = all.filter('.toggleable');
		if (toggleable.length == 0) {
			toggleable = all.filter(':hidden').addClass('toggleable');
		}
		toggleable.slideToggle();
	});
/*	alert(1);
	$('#shopping-chart').click(function() {
		alert(2);
		$('#shopping-chart > a').show();
		var href = $('#shopping-chart > a').attr('href');
		alert(href);
		if ($.cms.ajax) {
			if ($.cms.ajax.link_local(href) && !$.cms.ajax.go(href)) {
				return;
			}
		}
		window.location.href = href;
	});*/
});
