jQuery(document).ready(function() {
   


	jQuery("a.deleteme").live("click",function(){
		var putitback = jQuery(this).parent().find('span').text();
		jQuery(this).closest('li').remove();
		jQuery("#" + putitback).fadeIn();
		jQuery("#" + putitback).prev('input').fadeIn();
		return false;
	});

	jQuery("a.refresh").click(function(){
		location.reload();
		return false;
	});

	jQuery("a#btot").click(function(){
		jQuery('#mealcatch').val("");
		jQuery('#basket li').each(function(index) {
			jQuery(this).children('span').remove();
			var stepone = jQuery(this).text();
			if ( stepone != ""){
			var steptwo = stepone + "\n";
			var stepthree = jQuery('#mealcatch').val();
			var stepfour = stepthree + steptwo;
			jQuery('#mealcatch').val(stepfour);
			}
		});
		jQuery('#biginnerwrapper').fadeOut('fast',function(){
			jQuery('#meal_form').fadeIn('slow', function(){
			jQuery('input#client-name').focus();
			});
		});
		return false;
	});
 
 
});
