$(document).ready(function(){
	
	$("#yourSelection li").click(function(){
		$(this).fadeOut('fast', function(){$(this).remove();});
	});
	
	$("#confirm_submission").fadeIn('slow');

});
/* END DOCUMENT READY */



/* ================================================================================= */
/* ALL_PRINTS SCRIPTS */
/* ================================================================================= */
function add_selection(title){
	$("#yourSelection").append("<li style='display:none'>" + title + "</li>");
	$("#yourSelection li").fadeIn();
	
	$("#yourSelection li").click(function(){
		$(this).fadeOut('fast', function(){$(this).remove();});
	});
}

function send_selection(){
	$("#yourSelection li").each(function(index){
		var item = escape($(this).html());
		$("#yourSelectionForm").append("<input type='hidden' name='selection[" + index + "]' value='" + item + "'/>");
	});
	$('form')[0].submit();
}


/* ================================================================================= */
/* ================================================================================= */