/**
 * サブメニューのオープン・クローズ
 */
function slide(id,base_dir)
{
	if(navigator.userAgent.indexOf('MSIE 5') > 0){
		var target = document.getElementById('belong' + id);
		if(target.style.display == 'none'){
			target.style.display = 'block';
			var status = 1;
		} else {
			target.style.display = 'none';
			var status = 0;
		}
	}else{
		var target=$("#belong" + id); 
		if (target.is(":hidden")) {
			target.slideDown();
			var status = 1;
		} else {
			target.slideUp();
			var status = 0;
		}
	}
	_setCookie(id,status,base_dir);
}

function _setCookie(id,status,base_dir)
{
	$.ajax({
		url : base_dir + '/index.php/index/writemenustatus',
		type : "post",
		data : {'id': id,'status':status},
		success: function(request) {

		}
	});
}

