    var gw = document.getElementById("gw_prospective");
    var gwbtn = document.images["gwbtn_prospective"];
    var gwbtnfile="images/gw_prospective-tc.gif";

 	function initCookie(){
	        cookie_date = new Date();
	        cookie_date.setDate(cookie_date.getDate() + 90);
		switch (location.href){
		case "http://www.cityu.edu.hk/cityu/index-tc.htm#prospective":
	         document.cookie = "gw=prospective;expires=" + cookie_date.toGMTString() + ";path=/cityu/;domain=www.cityu.edu.hk";
	         document.cookie = "gw=prospective;expires=" + cookie_date.toGMTString() + ";path=/;domain=www.cityu.edu.hk";
	         document.cookie = "gw=prospective;expires=" + cookie_date.toGMTString() + ";path=;domain=www.cityu.edu.hk";
			break;
		case "http://www.cityu.edu.hk/cityu/index-tc.htm#visitor":
			setgw(document.getElementById('gw_visitor'), 'images/gw_visitor-tc.gif', 'images/gw_visitor-hl-tc.gif', document.images['gwbtn_visitor'], 'visitor');
			break;
		case "http://www.cityu.edu.hk/cityu/index-tc.htm#outreach":
			setgw(document.getElementById('gw_outreach'), 'images/gw_outreach-tc.gif', 'images/gw_outreach-hl-tc.gif', document.images['gwbtn_outreach'], 'outreach');
			break;
		case "http://www.cityu.edu.hk/cityu/index-tc.htm#mycityu":
			setgw(document.getElementById('gw_mycityu'), 'images/gw_mycityu-tc.gif', 'images/gw_mycityu-hl-tc.gif', document.images['gwbtn_mycityu'], 'mycityu');
			break;
		default:
			if (document.cookie.length <= 0){
		         document.cookie = "gw=prospective;expires=" + cookie_date.toGMTString() + ";path=/cityu/;domain=www.cityu.edu.hk";
		         document.cookie = "gw=prospective;expires=" + cookie_date.toGMTString() + ";path=/;domain=www.cityu.edu.hk";
		         document.cookie = "gw=prospective;expires=" + cookie_date.toGMTString() + ";path=;domain=www.cityu.edu.hk";
			}
			else{
				cookie_start = document.cookie.indexOf("gw=");
				cookie_end = document.cookie.indexOf(";", cookie_start);
				mycookie = document.cookie.substring(cookie_start+3, cookie_end);
		
				switch(mycookie){
				case "visitor":
					setgw(document.getElementById('gw_visitor'), 'images/gw_visitor-tc.gif', 'images/gw_visitor-hl-tc.gif', document.images['gwbtn_visitor'], 'visitor');
					break;
				case "outreach":
					setgw(document.getElementById('gw_outreach'), 'images/gw_outreach-tc.gif', 'images/gw_outreach-hl-tc.gif', document.images['gwbtn_outreach'], 'outreach');
					break;
				case "mycityu":
					setgw(document.getElementById('gw_mycityu'), 'images/gw_mycityu-tc.gif', 'images/gw_mycityu-hl-tc.gif', document.images['gwbtn_mycityu'], 'mycityu');
					break;
				default:
			        document.cookie = "gw=prospective;expires=" + cookie_date.toGMTString() + ";path=/cityu/;domain=www.cityu.edu.hk";
					document.cookie = "gw=prospective;expires=" + cookie_date.toGMTString() + ";path=/;domain=www.cityu.edu.hk";
					document.cookie = "gw=prospective;expires=" + cookie_date.toGMTString() + ";path=;domain=www.cityu.edu.hk";
					break;
				}
			}
			break;
		}
	}
