function dislay_enter(div)	{
	($("#" + div).css("display") == "block") ? type = "hide" : type = "show";
	div == "enter" ? $("#" + div).animate({width:type}, 300) : $("#" + div).animate({height:type}, 300);
}
