$(function() {
	$("#last_updated").text($(".item_date:first").text());
	if ($("textarea").text()=="") {
		$("textarea").text(" ");
	}
    $(".MMDataCaptureForm_Input").each(function(){
        var thisItem = $(this).attr("id");
        if ($.cookie(thisItem)) {
            $(this).attr("value",$.cookie(thisItem));
            $.cookie(thisItem,'');
          }
    });
    $("textarea").each(function(){
        var thisItem = $(this).attr("id");
        if ($.cookie(thisItem)) {
            $(this).text($.cookie(thisItem));
            $.cookie(thisItem,'');
          }
    });
	if ($(".MMDataCaptureForm_ErrorTD span").text()=="Thank you!") {
		$(".MMDataCaptureForm_Input").attr("value","");
		$("textarea").text(" ");
	}
    
    $(".MMDataCaptureForm_SubmitButton").click(function(){
        $(".MMDataCaptureForm_Input").each(function(){
            var thisItem = $(this).attr("id");
            var thisValue = $(this).attr("value");
            $.cookie(thisItem,thisValue);
        });
        $("textarea").each(function(){
            var thisItem = $(this).attr("id");
            var thisValue = $(this).text();
            $.cookie(thisItem,thisValue);
        });
    });
});