$(function(){
	//font size chance	
	$("img#fontChange").click(function(){
		var image_base = "/image/common/button/";
		var image_do_big = "schedule_01";
		var image_do_small = "schedule_03";

		if(this.src.indexOf(image_do_small) == -1){
			$(".fontChangeTarget").css("fontSize","114%");
			this.src = "/image/common/button/" + image_do_small + ".gif";
		}else{
			$(".fontChangeTarget").css("fontSize","100%");
			this.src = "/image/common/button/" + image_do_big + ".gif";
		}
	});

	//do print
	$("img#doPrint").click(function(){print();})

	//height adjust
	var show_height = $("div#showManner").height();
	if(navigator.userAgent.indexOf("IE 6") != -1)
		show_height = show_height + 10;
	$("div#calenderBox").css("height",show_height);

});