﻿$(document).ready(function () { 
    function newsRotatorTick() {
        $('#ulNewsRotator li:first').animate({ 'opacity': 0 }, 200, function () { $(this).appendTo($('#ulNewsRotator')).css('opacity', 1); });
   
    }

    setInterval(function () { newsRotatorTick() }, 4000);


    $('#ulNewsRotator a').click(function (e) {
        SetNewsRotatorStat();
    });

    function SetNewsRotatorStat() {
        var url = '/StatisticsHandler.ashx';

        $.postJSON(
                url,
                { statID: 'NewsRotator' },

                function (ajaxData) {

                });
    }
});
