// JavaScript Document
$(document).ready(function(){
	var end = new Date();
	$('#from_cat').change(function(){
		var cat = '';
		$('#from_cat option:selected').each(function () {
			cat += $(this).val();
		});
		
		var post_url = 'ajax_jSuggest.php?ts='+end.getTime();
		var data_set = { todo_detail: cat}
		$.post(
			post_url ,
			data_set,
			function(resp){
				var txt = '';
				//alert(resp);
				//txt += "<ul>";
				//$('#business_name').val(resp);
				p = resp.split(",");
				$('#list_bus').remove();
				for(var i = 0; i<p.length; i++)
				{
					if(p[i]){
						q = p[i].split("|");
						txt += "<li><a href='javascript:void(0)' name='todo_id[]'>"+q[1]+"</a></li>";
					}
				}
				//txt += "</ul>";
				$('#result_bus').prepend("<ul id='list_bus'>"+txt+"</ul>").slideToggle("slow");
			}
					 
		);
		
		$('#result_bus').hide();
		
		
	});
	
	$('[name^=todo_id]').live( 'click' , function(){
		//alert($(this).text());
		$('#business_name').val($(this).text());
		$('#result_bus').hide();
	});	
});
