/// <summary>
/// The Rental class adds the javascript logic for the Rental Quick Quote and Rental section as a whole.
/// </summary>

$(document).ready(function(){
	/******* START - Rental Quick Quote *******/
	//Handle click event for car rentals.
	$("input#btnCarsGo").click(
		function() {
			location.href = $("select#rentalCars").val();
		}
	);
	//Handle click event for commercial rentals.
	$("input#btnCommercialGo").click(
		function() {
			location.href = $("select#rentalCommercial").val();
		}
	);	
	/******* FINISH - Rental Quick Quote *******/
});