function initialize_new_show(){
	new_show_params = {
		date:{"conf":$("#new_show_date")},
		venue:{"conf":$("#new_show_venue")},
		city:{"conf":$("#new_show_city")},
		time:{"conf":$("#new_show_time")},
		address:{"conf":$("#new_show_address")},
		tickets:{"conf":$("#new_show_tickets")}
	}
	
	new_show = {};
	clear_new_show_form();

	$("#save_new_show").click(function(){
		for(var param in new_show_params){
			new_show[param] = $(new_show_params[param].conf).val();
		}

		new_show["id"] = api.generate_random_id();

		if(typeof band_data.shows == "undefined") band_data.shows = [new_show];
		else band_data.shows.push(new_show);
		new_show = {};

		api.update_band_data(band_data["_id"],function(){clear_new_show_form();update_shows();$("#new_show_customization").addClass("hidden");});
	});
}

function clear_new_show_form(){
	for(param in new_show_params){
		$(new_show_params[param].conf).val("");
	}
}
