// JavaScript Document
$(document).ready(function(){
	$("div.expanded").hide();
	$("#big_email_dealer").show();
	$("a.email_dealer").click(function(){
		$("div.expanded").hide();
		$("#big_email_dealer").show();
	})
	$("a.trade_appraisal").click(function(){
		$("div.expanded").hide();
		$("#big_trade_appraisal").show();
	})
	$("a.make_offer").click(function(){
		$("div.expanded").hide();
		$("#big_make_offer").show();
	})
	$("a.loan_calc").click(function(){
		$("div.expanded").hide();
		$("#big_loan_calc").show();
	})
});
