$(function(){

	
	// .office ul li.office01 がマウスオーバーされたら、img を office01.gif から office01_on.gif へスワップする。
	//$('#scheduleCalMonth p').each(function () {
		
		$("#scheduleCalMonth p.toLastMonth").mouseover(function () {
			
			$("#scheduleCalMonth p.toLastMonth img").attr({"src" : "assets/arrow_left_on.gif"});
			// カーソルの表示を変更。
			$(this).css({ 'cursor':'pointer'});
		
		}).mouseout(function () {
			$("#scheduleCalMonth p.toLastMonth img").attr({"src" : "assets/arrow_left.gif"});
		});
	
	
	
	
		$("#scheduleCalMonth p.toNextMonth").mouseover(function () {
			$("#scheduleCalMonth p.toNextMonth img").attr({"src" : "assets/arrow_right_on.gif"});
				// カーソルの表示を変更。
			$(this).css({ 'cursor':'pointer'});
		
		}).mouseout(function () {
			$("#scheduleCalMonth p.toNextMonth img").attr({"src" : "assets/arrow_right.gif"});

		});
	
	
	
	//});
	
});