$(document).ready(function()
{
    $(".list_cs_a").mouseover(
    function(event)
    {
        $(this).removeClass("list_cs_a");
        $(this).addClass("a_over");
    }).mouseout(
    function(event)
    {
        $(this).removeClass("a_over");
        $(this).addClass("list_cs_a");
    }
    );
    $(".list_cs_b").mouseover(
    function(event)
    {
        event.preventDefault();
        $(this).removeClass("list_cs_b");
        $(this).addClass("b_over");
    }).mouseout(
    function(event)
    {
        $(this).removeClass("b_over");
        $(this).addClass("list_cs_b");
    }
    );
}
);

