jQuery(document).ready(function(){
	var source='/wp-content/plugins/cenas/ajax.php';
	var target=jQuery('#cenas');
	
	if(jQuery(target).size()){
		jQuery.post(
			source,
			{act:'load'},
			function(r){
				jQuery(r).appendTo(jQuery(target));
				jQuery(target).find('.dest').change(function(){
					var d2=jQuery(target).find('.dest');
					if(jQuery(d2).val()){
						jQuery.post(
							source,
							{act:'getResults',dest:jQuery(d2).val()},
							function(r){jQuery(target).find('.result').html(r).show()},
							'html'
						);
					}
				});
			},
			'html'
		);
		
		
	}
});
