$(document).ready(function(){

	// Tabs
	$('#infoTabs').tabs();

	//hover states on the static widgets
	$('#dialog_link, ul#icons li').hover(
		function() { $(this).addClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);

	//ボックス「患者さま・ご家族様」の高さ調整
	setheight01();
	function setheight01(){
	var height01 = $('.top-mainBox-rightBox').height();
	//h2.pacientの高さ
	var height02 = 36;
	//top-mainBox-rightBoxの下マージン
	var height03 = 15;
	var setheight = height01 - height02 - height03;
	$('.content-left').height(setheight);
	}

	// ロールオーバー
	$('ul.content-list01 a img').rollover();

});


