$('document').ready(function() {
	$('ul#oldBooks li').draggable();
	$('ul#newBooks li').draggable({ snap: true });
	// $('li').click(function(){
	// 		$(this).css('z-index', 1);
	// 	});
	$("#close-button").click(function() {
	  $(this).oneTime(1000, "hide", function() {
	    $(this).parent(".main-window").hide();
	  });
	});
	$("#cancel-button").click(function() {
	  $("#close-button").stopTime("hide");
	});
	
});


