

$('.deleteButton').livequery('click', function() {

    var url= $(this).attr("href");
    $.ajax({
	type: "GET",
	url: url,
	success: function(result){
	    $('#koszyk').html(result);
	}
    });

    return false;

});


$('.toggleCartConsistent').livequery('click', function() {

    var clicked = $(this);
    var consistent = $(this).parent().children('.cartConsistent');

    if(consistent.css('display') == 'block'){
	consistent.fadeOut('fast', function(){
            clicked.text('[zobacz skład]');
        });
    } else{
	consistent.fadeIn('fast', function(){
	     clicked.text('[ukryj skład]');
	});
    }

    return false;

});
