﻿$(document).ready(function() {
   
   



    /* news scroll */
    $('.news-pane .news-item:first').addClass('active').css("top", "5px");
   setInterval("rotateHpNews()", 7000);
    
   
    
});





function rotateHpNews() {
    var $active = $('.news-pane .news-item.active')
    var $next = $active.next();
    if ($next.length == 0) { $next = $('.news-pane .news-item:first') }
    
    $next.css({ top: '340px' });
    
    $next.animate({top: '5px'}, 3000).addClass('active');
    $active.animate({top: '-340px'}, 3000).removeClass('active');
}