$(function(){
	$("#nav img").scgrph_swapper();

	if(location.href.match(/students/)){
		$("#nav img:first").scgrph_swapper({force:"inactive"});
		$("#nav ul:eq(1)").show();
	}
	else if(location.href.match(/teachers/)){
		$("#nav img:first").scgrph_swapper({force:"inactive"});
		$("#nav ul:eq(2)").show();
	}
	else{
		$("#nav ul:eq(0)").show();
	}
	if(location.href.match(/syllabus\/course\//)){
		$("#nav ul:eq(1) img:eq(1)").scgrph_swapper({force:"inactive"});
	}

	$(".left li a").each(function(){
		
		if(this.href.match(/\/$/) && location.href.match(/completion/)) return;
		if(location.href.match(this.href)){
			$(this).addClass("cur");
		}
	});
	$("#content ul#nav li ul:visible,#mt-blog ul#nav li ul:visible").append('<li style="float:right;margin:7px 5px 0 0"><form action="/search/" style="display:inline;"><input type="text" class="text" name="q" default="検索語句を入力" style="border-top:#666 solid 1px;border-left:#ccc solid 1px;border-bottom:#ccc solid 1px;height:21px;font-size:12px;line-height:21px;position:static;border-right:#fff solid 1px;margin:0 0 20px 13px;width:130px;float:left;"><input type="image" src="/images/kp01_29.gif" style="float:left;"></form></li>');
/*
	$("img[src$=h1a_01.jpg]").
		replaceWith('<div id="category" style="background:url(/images/h1a_01.jpg);height:138px;"><form action="/search/" style="width:300px;margin:0 20px 0 500px;"><input type="text" class="text" name="q" default="検索語句を入力" style="border-top:#666 solid 1px;border-left:#ccc solid 1px;border-bottom:#ccc solid 1px;height:21px;font-size:12px;line-height:21px;position:static;border-right:#fff solid 1px;margin:0 0 20px 13px;width:170px;float:left;"><input type="image" src="/images/kp01_29.gif" style="float:left;"></form></div>');
*/
	$("input[type=text]").each(function(){
		if($(this).val()=="" || !$(this).val())
			$(this).val(this.getAttribute("default"));

		if($(this).val()==this.getAttribute("default")) $(this).css("color","#ccc");
		
		$(this).focus(function(){
			if($(this).val() == this.getAttribute("default")){
				$(this).val("").css("color","#000");
			}
		}).blur(function(){
			if($(this).val()=="" || !$(this).val()) $(this).val(this.getAttribute("default")).css("color","#ccc");
			
		});
		$(this).parent("form").submit(function(){
			if($(this).find("input[type=text]").val()=="" || $(this).find("input[type=text]").val()==$(this).find("input[type=text]").get(0).getAttribute("default")){
				alert("検索語句を入力してください");
				return false;
			}
		});
	});
	
	

});


