function openwin(url, target)
{
	window.open(url, target, 'scrollbars=yes,resizable=yes,location=yes,toolbar=yes').focus();
}

function opendialog(url, target, w, h)
{
	if (!name) name = "_blank";
	if (!w) w = 850;
	if (!h) h = 850;
	window.open(url, target, 'dependent=yes,width='+w+',height='+h+',scrollbars=yes,location=no,resizable=yes').focus();
}

//サイドバーメニュー折りたたみ用（要・jQuery）
function openSideMenu(menu_id, menuimg_id) {
	var menuObj = jQuery(menu_id);
	if(menuObj.css('display') == 'block') {
		menuObj.slideUp();
		//画像切り替え
		var imgurl = jQuery(menuimg_id).attr('src');
		imgurl = imgurl.replace("_open", "_close");
		jQuery(menuimg_id).attr('src', imgurl);
	} else {
		menuObj.slideDown();
		//画像切り替え
		var imgurl = jQuery(menuimg_id).attr('src');
		imgurl = imgurl.replace("_close", "_open");
		jQuery(menuimg_id).attr('src', imgurl);
	}
}
//上記イベント付与
jQuery(window).load(function() {
	jQuery('img#menuhead2010').click(function(){
		openSideMenu('ul#menu2010', 'img#menuhead2010')
	});
});
