function setCookie (name, value, expires, path, domain, secure) {
      document.cookie = name + "=" + escape(value) +
        ((expires) ? "; expires=" + expires : "") +
        ((path) ? "; path=" + path : "") +
        ((domain) ? "; domain=" + domain : "") +
        ((secure) ? "; secure" : "");
}

var id;

$(document).ready(function(){ 
/*
	$("#citynamechoice li a").click(function() {
		//clearTimeout(id);
		//setTimeout(function() { id = $("#citychoice").slideUp(200); }, 2000);
		$("#citynamechoice li a").removeClass("active");
		$(this).addClass("active");
		var index = $("#citynamechoice li a").index(this);
		$("#phone .number").hide();
		$("#phone .number:eq("+index+")").css("display","block");
		setCookie("mycity",index,"Sun, 17-Jan-2038 23:59:59", "/");
		$("#city p strong").text($(this).text());
		$("#citynamechoice").slideToggle(200);
		return false;
	});
*/
});
