﻿        $(document).ready(function () {
            jeepDrive();
            var links = ["style", "work", "contact", "about", "home"];
            function jeepDrive() {
                $("#jeep1").delay(5000).animate({
                    top: '-=94px',
                    width: 25
                }, 3000, function () {
                    // Animation complete.
                    $("#roadSlice").css("z-index", "100");
                    $("#jeep1").animate({
                        top: '+=20px',
                        left: '+=5px',
                        width: 10
                    }, 3000, function () {
                        // Animation complete.
                        $(this).toggle();
                    });
                });
            }
            $("#home_con").fadeToggle("slow");

            $(".mi").click(function () {
                var clickedLink = $(this).attr("id");
                var nextCon = clickedLink + "_con";
                $(".contents").fadeOut("slow");
                $("#" + nextCon).fadeIn("slow");

            });
        });
