﻿$(function() {
    $(".HoverGrid tr:not('.GridHeader')").live('mouseenter', function(e) {

        $(this).children("td").css({
            'background-color': '#f0f0f0'
        });
    });
    $(".HoverGrid tr:not('.GridHeader')").live('mouseleave', function(e) {

        $(this).children("td").css({
            'background-color': ''
        });

    });

    $(".Ticker").Ticker({
        container: ".Ticker",
        speed: 1
    });

    $(".Slider").Slider({
        container: ".Slider",
        animation:true
    });
});  
