var w = 0;
var h = 0;
var mout;
function emotion(){
	var oMenu = document.getElementById("menu");
	if(w <= 50){
		oMenu.style.display = "block";
		fnLarge();
	}
	else{
		fnSmall();
	}
}
function fnLarge(){
	var oMenu = document.getElementById("menu");
	if(w < 200){
		w += 50;
		h += 25;
		oMenu.style.width = w+"px";
		oMenu.style.height = h+"px";
		window.setTimeout("fnLarge()",10);
	}
}
function fnSmall(pId){
//	var oMenu = document.getElementById("menu");
//	if(w > 0){
//		w -= 50;
//		h -= 25;
//		oMenu.style.width = w+"px";
//		oMenu.style.height = h+"px";
//		window.setTimeout("fnSmall( " + pId + ")",5);
//	}
//	else{
//		oMenu.style.display = "none";
//		SetCityCookie(pId);
//	    location.href = location.href;
//	}
    
   
    var oMenu = document.getElementById("menu");
    var CookieString;
    oMenu.style.display = "none";
    if(pId != "" && pId != "0")
    {
        SetCityCookie(pId);
    }
    else if(pId == "0")
    {
        CookieString = "75,76,77,78,79";
        SetCityCookie(CookieString);
    }
    else if(pId == "")
    {
        DelCityCookie();
    }
    //location.href = location.href;
    location.reload();
}
function SetCityCookie(value)
{
    var nnn = new XCookie();
    nnn.setCookie("city11", value,nnn.day(1));
}
function DelCityCookie()
{
    var nnn = new XCookie();
    nnn.delCookie("city11");
}