The inventory you are looking for is no longer available.
		Please check back later.
	</p>

<?php 
} else {
    ?>

	<div class="squirrels squirrels-auto">

		<div class="row">
			<div class="col-md-12">

				<h3 class="squirrels-title">
					<?php 
    echo $auto->getYear() > 0 ? $auto->getYear() : '';
    ?>
					<?php 
    echo $auto->getMake()->getTitle();
    ?>
					<?php 
    echo $auto->getModel()->getTitle();
    ?>
					-
					<?php 
    if ($auto->getPrice() === NULL || $auto->getPrice() == 0) {
        ?>
						Call for Price
					<?php 
    } else {
        ?>
						<label for="squirrels_vin">Vin:</label>
					</th>
					<td>
						<input id="squirrels_vin" value="<?php 
        echo htmlspecialchars($auto->getVin());
        ?>
" />
					</td>
				</tr>
				<tr>
					<th>
						<label for="squirrels_year">Year:</label>
					</th>
					<td>
						<input id="squirrels_year" value="<?php 
        echo htmlspecialchars($auto->getYear());
        ?>
" />
					</td>
					<th>
						<label for="squirrels_odometer_reading">Odometer:</label>
					</th>
					<td>
						<input id="squirrels_odometer_reading" value="<?php 
        echo number_format($auto->getOdometerReading());
        ?>
" />
					</td>
				</tr>

				<tr>