/*  コンテンツ共通 Window Open スクリプト*/

function wopen(url, w, h) {
	window.open(url, '', 'width=' + w + ',height=' + h + ',top=200,left=200,status=yes,resizable=yes,scrollbars=yes,toolbar=yes,location=yes,menubar=yes');
}


/*  コンテンツ共通 コンテンツ読み込み時 スクリプト*/
$(function() {

	/* サイドメニュー 初期折り畳み */
	$('.menu').find('.titem').hide().data('lock', false);

	/* サイドメニュー グループのイベント割り当て */
	$('.menu_group').hover(
		function () {
			$(this).find('.titem').delay(200).show(200);
		},
		function () {
			if ($(this).find('.titem').data('lock') == false) {
				$(this).find('.titem').stop(true, true).hide(200);
			}
		}
	);

	/* ロールオーバの処理 */
	$('.rollover_btn').hover(
		function () {
			$(this).css('backgroundPosition', '0px -' + $(this).height() + 'px');
		},
		function () {
			$(this).css('backgroundPosition', '0px 0px');
		}
	);

});

