
$(function()
{
    var c = 0;
    window.setInterval(function()
    {
        if(c == 0)
            $("#HotPropertyTabId").css("color", "#0000ff");
        else if(c == 1)
        	$("#HotPropertyTabId").css("color", "#00ff00");
        else
        	$("#HotPropertyTabId").css("color", "#ff0000");
        c = (c+1)%3;
    },
    1000);
});

