﻿$(document).ready(function() {
    var total = 0;
    var citem = 0;
    $('#nn li').each(function() {
        total++;
    });
    $('#bPre').click(function() {
        citem--;
        if (citem < 0)
            citem = total - 1;
        showItem();
    });

    var mo = false;
    $('#bodyy_l').mouseover(function() {
        mo = true;
        //$('#mos').html('mouseover');
    });
    $('#bodyy_l').mouseout(function() {
        mo = false;
        //$('#mos').html('mouseover');
    });
    function showNextItem() {
        if (mo) return;
        citem++;
        if (citem >= total)
            citem = 0;
        showItem();
    }
    $('#bNext').click(function() {
        showNextItem();
    });
    function showItem() {
        var temp = 0;
        $('#nn li').each(function() {
            if (temp == citem) {
                //$(this).show();
                $(this).fadeIn(750);
            }
            else {
                $(this).hide();
                //$(this).fadeOut("slow");
            }
            temp++;
        });
    }
    showItem();

    if (document.getElementById('bNext')) {
        setInterval(showNextItem, 15000);
    }
});
