Jquery.ascensor.js how-to set it up?

Jquery.ascensor.js how-to set it up?

Hello,
Ia am total newbe in jquery stuff but I want to learn how to use very interesting plugin

Jquery.ascensor.js

Can somebody tell me how to setup html file and myscript.js to make it work like in demo provided on author site.

I tried to do it myself but it doesn't work.

I will be very greatfull for any help or tips.

my files content:

index.html

<!DOCTYPE html>
<html>
  <head>
    <script src="js/jquery.min.js" type="text/javascript"></script>
    <script src="js/jquery.scrollTo.js" type="text/javascript"></script>
    <script src="js/jquery.ascensor.js" type="text/javascript"></script>

    </head>
  <body>
<div id="ascensorBuilding">
    <section>
        //floor one content here
    </section>

    <section>
        //floor two content here
    </section>

    <section>
        //floor three content here
    </section>
</div>

   </body>
</html>

myscript.js

$('#ascensorBuilding').ascensor({
        AscensorName:'ascensor',
        ChildType:'section',
        AscensorFloorName:'Home | Implementation | HTML | Jquery | CSS | Smartphone | End',
        Time:1000,
        Easing:'easeInOutCubic',
        WindowsOn:1,
        Direction:'chocolate',
        AscensorMap:'1|1 & 1|2 & 2|2 & 1|3 & 1|4 & 2|4 & 1|5',
        KeyNavigation: true,
        Queued:false,
        QueuedDirection:"x"
});