    ctime = new Date

    // The morning (before 12pm,  should be grey)
    if (ctime.getHours() < 12) {
    document.write('<link rel="stylesheet" type="text/css" href="css/style1.css" />')
    }

    // The afternoon (before 7pm, should be brown)
    else if (ctime.getHours() < 19) {
    document.write('<link rel="stylesheet" type="text/css" href="css/style2.css" />')
    }

    // The evening (before 12am, should be dark blue)
    else if (ctime.getHours() < 24) {
    document.write('<link rel="stylesheet" type="text/css" href="css/style3.css" />')
    }

    // Error Catching (is there any other time of day?)
    else {
    document.write('<link rel="stylesheet" type="text/css" href="css/style1.css" />')
    }