$(document).ready(function(){
	$("form.form_get").each(function(){
		$(this).submit(function(){
			var action = $(this).attr('action');
			var segments = action.split('/');
			var method = segments[segments.length-1];
			var parms = $.method_parameters[method];
			var destination = action;
			for( var idx in parms )
			{
				//var value = $("#" + parms[idx]).val();
				var value = $(this).children("[name=" + parms[idx] +"]").val();
				destination += '/' + value;
			}
			window.location.href = destination;
			return false;
		});
	});
});
