﻿$(document).ready(function(){

    setInterval(swapImages,160);

    function swapImages(){
    
        var active = $('.active'); 
        if($('.active').next().length > 0)
        {
            var next = $('.active').next();
        }
        else
        {
            var next = $('#siteNewsTop img:first');
        }
   
        active.removeClass('active');
        next.addClass('active');
    }
    
    
    $('#image1').hover(function(){
        
        thisSrc = $(this).attr('src');
        newSrc = '/images/NewsBox/news_box_thumb1_ovr.jpg'
        $(this).attr('src', newSrc);
    
    }, function(){
        
        $(this).attr('src', thisSrc);
    });
    
    
    $('#image2').hover(function(){
    
        thisSrc2 = $(this).attr('src');
        newSrc2 = '/images/NewsBox/janeandoaksml_ovr.jpg'
        $(this).attr('src', newSrc2);
    }, function(){
        
        $(this).attr('src', thisSrc2);
    
    });
    $('.readMoreNews').hover(function(){
    
        thisSrc2 = $(this).attr('src');
        newSrc2 = '/images/3col_articles_MoreBtn.png'
        $(this).attr('src', newSrc2);
    }, function(){
        
        $(this).attr('src', thisSrc2);
    
    });    
    $('.readMore').hover(function(){
    
        readMoreSrc = $(this).attr('src');
        readMoreNew = '/images/NewsBox/news_box_read_more_ovr.png';
        $(this).attr('src', readMoreNew);
        }, function(){
            $(this).attr('src', readMoreSrc);
            });
});

