$(document).ready(function() {

	$(".flowers a.showedit").click( function() {
		$(this).hide().siblings(".edit").show();
		$(this).siblings(".flower").hide();

		$(this).siblings(".edit").children(".description").val( $(this).siblings(".flower").children(".flowertext").text() );
		return false;
	});

	$(".flowers a.submit").click( function() {
		$(this).parent().hide().siblings(".showedit").show().siblings(".flower").show();
	});
	
	$(".flowers a.canceledit").click( function() {
		$(this).parent().parent().hide().siblings(".showedit").show().siblings(".flower").show();
		return false;
	});

	$("#prices a.showedit").click( function() {
		$(this).hide().siblings( ".pricetext" ).hide().siblings( ".edit" ).show();
		$(this).siblings(".edit").children(".title").val( $(this).siblings(".pricetext").children(".title").text() );
		$(this).siblings(".edit").children(".price").val( $(this).siblings(".pricetext").children(".price").text() );
	});

	$("#prices a.canceledit").click( function() {
		$(this).parent().hide().siblings(".showedit").show().siblings(".pricetext").show();
	});
});
