function getPSTHours() {
	d = new Date()
	return ((d.getUTCHours() - 7) + 24) % 24
}
function getPSTMinutes() {
	d = new Date()
	return d.getUTCMinutes()
}
function getPSTSeconds() {
	d = new Date()
	return d.getUTCSeconds()
}

