$(document).ready(function(){
	$("#moreRelatedCars p a").click(function() {
		$("div.relatedCars").toggle(500, function() {
			if($("#moreRelatedCars p a").text() == "More...") {
				$("#moreRelatedCars p a").text("Less...");
			}
			else {
				$("#moreRelatedCars p a").text("More...");
			}
		});
	});
}); 