$(document).ready(function() {

 	//Add id to session
	$("span.chosen").each(function(){
		$(this).click(function(){
			// get the value from the checkbox id                             
			var id = $(this).text();
			alert(id);
			$.post('/ajax_pages/get_pages',
			  { 'id':id },

			  function(result) {
			  	//nothing for now -- debug
				if (result) {
					$("#par").html(result);
				}
			  }
			);
		});
	});
});
