﻿$(document).ready(function() {
    $('#s1').click(function() {
        $('#splash-b-l').html("We've assembled the questions that everyone should ask when buying a used car and we ask those of you.");
        $('#s1').removeClass("s1off").addClass("s1on");
        $('#s2').removeClass("s2on").addClass("s2off");
        $('#s3').removeClass("s3on").addClass("s3off");
        $('#s4').removeClass("s4on").addClass("s4off");
        return false;
    });
    $('#s2').click(function() {
        $('#splash-b-l').html('Anyone can say that their car works well. But how can you support that claim? Getting a Buyer to commit will depend on trust, helping you close that sale.');
        $('#s2').removeClass("s2off").addClass("s2on");
        $('#s1').removeClass("s1on").addClass("s1off");
        $('#s3').removeClass("s3on").addClass("s3off");
        $('#s4').removeClass("s4on").addClass("s4off");
        return false;
    });
    $('#s3').click(function() {
        $('#splash-b-l').html('Why settle for one website, when we can post your listing on all the sites? Manage all of your listings from one location, Mota.');
        $('#s3').removeClass("s3off").addClass("s3on");
        $('#s2').removeClass("s2on").addClass("s2off");
        $('#s1').removeClass("s1on").addClass("s1off");
        $('#s4').removeClass("s4on").addClass("s4off");
        return false;
    });
    $('#s4').click(function() {
        $('#splash-b-l').html('On average, private party sellers earn 16% more than trading it in to a dealer. ');
        $('#s4').removeClass("s4off").addClass("s4on");
        $('#s2').removeClass("s2on").addClass("s2off");
        $('#s3').removeClass("s3on").addClass("s3off");
        $('#s1').removeClass("s1on").addClass("s1off");
        return false;
    });
});