﻿// JScript File

$(document).ready( function () 
{
    $('.news_index ul li').mouseover( function () 
    {
        $(this).find("a span.news_title").css("text-decoration","underline");
    });
    
    $('.news_index ul li').mouseout( function () 
    {
        $(this).find("a span.news_title").css("text-decoration","none");
    });
    
    $('.news_index ul li').click( function ()
    {
        var anchorLink = $( this ).find( "a" )[0].href;
        window.open( anchorLink, '_self' );
    });
    
    $('.news_index' ).find('ul li:last').css( 'border-bottom', '0px' );
});