﻿/*
    Custom Anchor Links behavior
*/


$(document).ready(function() {
$('.sectionActionLinks a, .sectionSubActionLinks a')
            .mouseover(function() {
                $(this).css({ "text-decoration": "underline" });
            })
            .mouseout(function() {
                $(this).css({ "text-decoration": "none" });
            });            
});
