$(document).ready(function(){


	// マウスオーバー(jquery.rollover)
	//------------------------------------------------------------------------------------------
	$('.mOver, input:image').rollover();



	// ワンポイント
	//------------------------------------------------------------------------------------------
	$(".hLine02").before('<span class="icoFuki"><img src="/share/img/ico_fukidashi.png" alt=""></span>');



	// 別ウィンドウ
	//------------------------------------------------------------------------------------------
	$(".newWin").click(function(){
		window.open(this.href,'_blank');
		return false;
	});
	



	//-------------------------------------------------------------

	$(".frameUnits").load(function(){
			if (typeof $(this).attr("height") == "undefined") {

				// IE
				if(jQuery.browser.msie ){
					// -100はiframe内のコンテンツでdisplay:noneをしているheader、footerの分
					$(this).height( (this.contentWindow.document.body.scrollHeight) +10 );
				}
				// others
				else {
					$(this).height( (this.contentWindow.document.documentElement.offsetHeight) +10 );
				}

			}
	});
	$(".frameUnits").triggerHandler('load');

});

