$(document).ready(function()
{
    $("span.links").hover(
    function()
    {
    	$(this).css("cursor","default");
        $(this).parents(".row").find(".text a").addClass("highlight");     
    },
    function()
    {
        $(".text a").removeClass("highlight");
    });
    
    /*$(".text a").hover(
    function()
    {
        $(this).parents(".row").find("span.links").addClass("highlight");    
    },
    function()
    {
        $("span.links").removeClass("highlight");
    }); */
});

