$(document).ready(function(){

/* Makes the Marketplace autos, homes, and jobs work */

$("a.autos").click(function() {
	$(this).css("background","url(/images/marketplace/mp_autos.gif) no-repeat top");
	$("a.jobs").css("background", "url(/images/marketplace/mp_jobs.gif) no-repeat bottom");
	$("a.homes").css("background", "url(/images/marketplace/mp_homes.gif) no-repeat bottom");
	$("#jobsContent").fadeOut(100, function() {
	$("#homesContent").fadeOut(200, function() {
	$("#autosContent").fadeIn(200);
});	
	});
		});
$("a.jobs").click(function() {
	$(this).css("background","url(/images/marketplace/mp_jobs.gif) no-repeat top");
	$("a.autos").css("background", "url(/images/marketplace/mp_autos.gif) no-repeat bottom");
	$("a.homes").css("background", "url(/images/marketplace/mp_homes.gif) no-repeat bottom");
	$("#autosContent").fadeOut(100, function() {
	$("#homesContent").fadeOut(200, function() {
	$("#jobsContent").fadeIn(200);
});	
	});
		});
$("a.homes").click(function() {
	$(this).css("background","url(/images/marketplace/mp_homes.gif) no-repeat top");
	$("a.jobs").css("background", "url(/images/marketplace/mp_jobs.gif) no-repeat bottom");
	$("a.autos").css("background", "url(/images/marketplace/mp_autos.gif) no-repeat bottom");
	$("#jobsContent").fadeOut(100, function() {
	$("#autosContent").fadeOut(200, function() {
	$("#homesContent").fadeIn(200);
});	
	});
		});

/* This makes the first paragraph of the SpotLight div display correctly */
 $("#spotLight p:eq(0)").css("padding-top","50px");
});
