$(document).ready(function(){

// ONLOAD FUNCTIONS BELOW

	$('#discounts_content').hide();
	$('#quote_content').hide();
	$('#about_content').hide();
	$('#b_content').hide();
	$('#c_content').hide();
	$('#d_content').hide();
	$('#e_content').hide();
	$('#f_content').hide();
	$('#g_content').hide();

// ONLOAD FUNCTIONS ABOVE

// GLOBAL NAV FUNCTIONS BELOW

	$('#nav li').hover(function() {
		$(this).addClass('menu_over');
	}, function() {
		$(this).removeClass('menu_over');
	});

// GLOBAL NAV FUNCTIONS ABOVE


// LEFT NAV BELOW

	$('a#about_link').click(function() {
		$('#b_content').hide();
		$('#c_content').hide();
		$('#d_content').hide();
		$('#e_content').hide();
		$('#f_content').hide();
		$('#g_content').hide();
		$('#about_content').toggle(274);
	});

	$('a#b_link').click(function() {
		$('#about_content').hide();
		$('#c_content').hide();
		$('#d_content').hide();
		$('#e_content').hide();
		$('#f_content').hide();
		$('#g_content').hide();
		$('#b_content').toggle(274);
	});

	$('a#c_link').click(function() {
		$('#about_content').hide();
		$('#b_content').hide();
		$('#d_content').hide();
		$('#e_content').hide();
		$('#f_content').hide();
		$('#g_content').hide();
		$('#c_content').toggle(274);
	});

	$('a#d_link').click(function() {
		$('#about_content').hide();
		$('#b_content').hide();
		$('#c_content').hide();
		$('#e_content').hide();
		$('#f_content').hide();
		$('#g_content').hide();
		$('#d_content').toggle(274);
	});

	$('a#e_link').click(function() {
		$('#about_content').hide();
		$('#b_content').hide();
		$('#c_content').hide();
		$('#d_content').hide();
		$('#f_content').hide();
		$('#g_content').hide();
		$('#e_content').toggle(274);
	});

	$('a#f_link').click(function() {
		$('#about_content').hide();
		$('#b_content').hide();
		$('#c_content').hide();
		$('#d_content').hide();
		$('#e_content').hide();
		$('#g_content').hide();
		$('#f_content').toggle(274);
	});

	$('a#g_link').click(function() {
		$('#about_content').hide();
		$('#b_content').hide();
		$('#c_content').hide();
		$('#d_content').hide();
		$('#e_content').hide();
		$('#f_content').hide();
		$('#g_content').toggle(274);
	});

// LEFT NAV ABOVE

});
