﻿$(document).ready(function () {
    var now = new Date();
    var i = now.getDay();
    $("#tips li:nth-child(" + (i+1) + ")").show();
});
