$(document).ready(function() {
	var initial_form = $('#basket_form').serialize();
	$('.chk').click(function() {
		if ($('#basket_form').serialize() != initial_form) {
			$('#update_basket').show();
			$('#send_moo').hide();
		} else {
			$('#update_basket').hide();
			$('#send_moo').show();
		}	
	});
});