var t;
function showPopup(){
	if($("#pop_item").is(":hidden")){
		$("#pop_item").slideDown("slow");
	}
	clearTimeout(t);
}
function hidePopup(){
	t= setTimeout(function(){$("#pop_item").slideUp("slow");},500);
}
