$(document).ready(function(){
	$(".tabs > div").click(function(e){
		switch(e.target.id){
			case "auto-moto":
				$("#auto-moto").addClass("active");
				$("#sell").removeClass("active");
				$("#buy").removeClass("active");
				$("div.auto-moto").fadeIn();
				$("div.sell").css("display", "none");
				$("div.buy").css("display", "none");
			break;
			case "sell":
				$("#auto-moto").removeClass("active");
				$("#sell").addClass("active");
				$("#buy").removeClass("active");
				$("div.sell").fadeIn();
				$("div.auto-moto").css("display", "none");
				$("div.buy").css("display", "none");
			break;
			case "buy":
				$("#auto-moto").removeClass("active");
				$("#sell").removeClass("active");
				$("#buy").addClass("active");
				$("div.buy").fadeIn();
				$("div.auto-moto").css("display", "none");
				$("div.sell").css("display", "none");
			break;
		}
		return false;
	});
});