	today = new Date();
	day = today.getDay(); // get the day of the week
	hour = today.getHours(); // get the current time (in 24hr format)
	gmtHours = today.getTimezoneOffset()/60;
	hour = hour - gmtHours + 8;
	
	showname = "Radio Fusion"; // default value
	host = "Your Music, Your Voice"; // default value
	
	// exclude public holidays first
	/*if (today.toDateString() == "Fri Dec 25 2009")
	{
		showname = "Merry Christmas!"; // default value
		host = "Greetings from Radio Fusion"; // default value
	}
	else if (today.toDateString() == "Thu Jan 01 2009")
	{
		showname = "Happy New Year!";
		host = "Greetings from Radio Fusion";
	}
	else if (today.toDateString() < "Sat Nov 01 2008")
	{
		showname = "We're currently off-air."; // default value
		host = "Tune in to us again in January 2009!"; // default value
	}*/
	/*else // normal dates
	{
		if (day == 1) // Monday
		{
			if ((hour >= 11) && (hour < 13))
			{
				showname = "午餐音乐song";
				host = "Ng Yi Han and Aw Qinxin";
			}
			else if ((hour >= 13) && (hour < 15))
			{
				//showname = "天天好心情";
				//host = "岚子、Ms Tay、雪棱";
			}
			else if ((hour >= 15) && (hour < 17))
			{
				showname = "The B-side";
				host = "Sharlene";
			}
			else if ((hour >= 17) && (hour < 19))
			{
				showname = "Never Mind the Chaos";
				host = "Fifa and Simar";
			}
			else if ((hour >= 19) && (hour < 21))
			{
				showname = "Affection in Blue";
				host = "Kim Hock, Allen and David";
			}
			else if ((hour >= 21) && (hour < 23))
			{
				//showname = "Monday Madness with Friz";
				//host = "Frizal";
			}
		}
		else if (day == 2) // Tuesday
		{
			if ((hour >= 11) && (hour < 13))
			{
				showname = "Music for lunch";
				host = "James and Abel";
			}
			else if ((hour >= 13) && (hour < 15))
			{
				showname = "大女人•小女人";
				host = "佩芩、蓓思、文娟";
			}
			else if ((hour >= 15) && (hour < 17))
			{
				showname = "火星人看地球";
				host = "Qianyi and Xiaoyu";
			}
			else if ((hour >= 17) && (hour < 19))
			{
				showname = "TOOT Toosday";
				host = "Friz";
			}
			else if ((hour >= 19) && (hour < 21))
			{
				showname = "戏游记";
				host = "Janus and Shi Si";
			}
			else if ((hour >= 21) && (hour < 23))
			{
				showname = "Heart.Beat";
				host = "Gim Keng";
			}
		}
		else if (day == 3) // Wednesday
		{
			if ((hour >= 11) && (hour < 13))
			{
				showname = "天空之旅";
				host = "Ma Yi Wei and Lim Chee Han";
			}
			else if ((hour >= 13) && (hour < 15))
			{
				showname = "English, Math and Science";
				host = "Melissa, Stephanie and Ezen";
			}
			else if ((hour >= 15) && (hour < 17))
			{
				showname = "食尚达人";
				host = "玮婷,碧莹";
			}
			else if ((hour >= 17) && (hour < 19))
			{
				showname = "音乐宇航员";
				host = "晓宇";
			}
			else if ((hour >= 19) && (hour < 21))
			{
				//showname = "音乐宇航员";
				//host = "晓宇";
			}
			else if ((hour >= 21) && (hour < 23))
			{
				//showname = "Fusion 911";
				//host = "ZaZa, YaYa";
			}
		}
		else if (day == 4) // Thursday
		{
			if ((hour >= 11) && (hour < 13))
			{
				showname = "潮流音乐厅";
				host = "Shuiling, Ruojing and Kaiwen";
			}
			else if ((hour >= 13) && (hour < 15))
			{
				//showname = "Latest Jukebox";
				//host = "Rudith";
			}
			else if ((hour >= 15) && (hour < 17))
			{
				showname = "Shiftercar Radio";
				host = "DJ Johnny G";
			}
			else if ((hour >= 17) && (hour < 19))
			{
				showname = "冷潮热风";
				host = "小欣,宝儿,澎仔";
			}
			else if ((hour >= 19) && (hour < 21))
			{
				showname = "小事化大";
				host = "Yanwei";
			}
			else if ((hour >= 21) && (hour < 23))
			{
				showname = "喂鱼时间 FEEDING FISH";
				host = "嘉尉、欣瑜";
			}
		}
		else if (day == 5) // Friday
		{
			if ((hour >= 11) && (hour < 13))
			{
				showname = "Smalltalk";
				host = "Seok Yin and Yi Han";
			}
			else if ((hour >= 13) && (hour < 15))
			{
				showname = "Flaming Hits 123";
				host = "Xiao Wei";
			}
			else if ((hour >= 15) && (hour < 17))
			{
				//showname = "NRJ";
				//host = "";
			}
			else if ((hour >= 17) && (hour < 19))
			{
				//showname = "聪之作";
				//host = "Zave志聪";
			}
			else if ((hour >= 19) && (hour < 21))
			{
				//showname = "陪你看电影-周末精装版";
				//host = "阿勇（张正勇）";
			}
			else if ((hour >= 21) && (hour < 23))
			{
				//showname = "Lemon Juice";
				//host = "茂清、刘喆";
			}
		}
	}*/
	
	document.write("<b>" + showname + "</b><br/>");
	document.write(host);