﻿$(document).ready(function() {

    var counter = 0;

    $(".leftNavUp").mouseover(function() { $(this).hide(); $(".leftNavOver").show(); });
    $(".leftNavOver").mouseout(function() { $(this).hide(); $(".leftNavUp").show(); });
    $(".leftNavOver").click(function() {
        counter = counter - 1;
        if (counter < 0) {
            counter = $(".flipBookImage").length - 1;
        }
        displayImage(counter);
    });

    $(".rightNavUp").mouseover(function() { $(this).hide(); $(".rightNavOver").show(); });
    $(".rightNavOver").mouseout(function() { $(this).hide(); $(".rightNavUp").show(); });
    $(".rightNavOver").click(function() {
        counter = counter + 1;
        if (counter > ($(".flipBookImage").length - 1)) {
            counter = 0;
        }
        displayImage(counter);
    });

    displayImage = function(value) {
        $(".flipBookImage").hide();
        $($(".flipBookImage")[value]).show();
    }

    displayImage(0);

});    