$(document).ready(function() {
						   
			   
	$("#save_reference").click(function() {
									


			$.post('http://www.harvardgenerator.com/my-references/save',  { 
			content: $("#rresults").text(),  
			type: $("#type").val()
			},
				function(data){
				$("#my_ref_confirm").show("slide", { direction: "up" }, "slow");
				$("#my_ref_confirm").html('Added to your references');
			});
	});
	
	$("#delete_reference_list").click(function() {
								

								
								
			$.post("http://www.harvardgenerator.com/my-references/delete", function(data){
   					$("span#display").hide("slide", { direction: "up" }, "slow");
					$("#my_ref_confirm").show("slide", { direction: "up" }, "slow");
					$("#my_ref_confirm").html('Deleted');
 			});

	});
									


});
