/**
 * init jQuery chained select boxes
 * 
 * @author	maik mettenheimer <maik@mettbox.de>
 * @version	2009-02-09
 */

jQuery.noConflict();

jQuery(document).ready(function()
{

	jQuery("#locomotion_id").change(function() {
		jQuery("#route_id option:first").attr("selected", "selected");
		jQuery("#start_id > *").remove();
		jQuery("#goal_id > *").remove();
	});

	jQuery("#route_id").change(function() {
		jQuery("#start_id > *").remove();
		jQuery("#goal_id > *").remove();
	});
	
	jQuery("#route_id").chainSelect("#start_id","/assets/templates/default/ajax/combobox2.php","{ defaultValue: 2}");
    jQuery("#start_id").chainSelect("#goal_id","/assets/templates/default/ajax/combobox2.php","{ defaultValue: 2}");

});

