function loadRiverFlow(riverId) {
	var riverUrl = "http://troutsflyfishing.com/unleaded/river-flow.php?river_id=" + riverId;
	jQuery.ajax({type: "GET", url: riverUrl, success: function(data) { jQuery('#river_' + riverId).html(data); } });
}

function loadStreamFlow(riverId) {
	var riverUrl = "http://troutsflyfishing.com/unleaded/stream-flow.php?river_id=" + riverId;
	jQuery.ajax({type: "GET", url: riverUrl, success: function(data) { jQuery('#river_' + riverId).html(data); } });
}
