﻿var all_ls = "/WebService.mvc/lsleb";
var u_ls = "/WebService.mvc/ulsleb";

$(document).ready(function() {
    getAllLivescore();

    $("#livescore td.score a").each(function() {
        $(this).click(function() {
            showMatchDetails($(this).attr("href"));
            return false;
        });
    });

    /* $("#livescore tr.match").each(function() {
    $(this).hover(
    function() {
    $(this).addClass('hover');
    },
    function() {
    $(this).removeClass('hover');
    }
    );
    });
    */

    $("#livescore tr.match").each(function() {

        $(this).click(function() {

            $("#livescore #" + $(this).attr("id") + " td.score a").each(function() {
                showMatchDetails($(this).attr("href"));
                return false;
            });
        });
    });

});
