var j$ = jQuery;

//pull-down menu
j$(function() {
	j$(document).ready(function() {
		pulldownMenu("outline","nv1");
		pulldownMenu("business","nv2");
		pulldownMenu("rehabili","nv3");
		pulldownMenu("daigakuin","nv4");
		pulldownMenu("exam","nv5");
		pulldownMenu("recruit","nv6");
		pulldownMenu("campus","nv7");
	});
	j$("#globalnavi > li").hover(function(){
		j$(this).children().each(function(){
			if(j$(this).attr("href") == undefined){ 
				j$(this).css("display","block");
			}
		});
	},function(){
		j$("#globalnavi > li > ul").css("display","none");
	});

});






function pulldownMenu(navi,number) {
//	var url = "/seijoh/js/pulldown/pull_" + navi + ".html";
	var url = "/js/pulldown/pull_" + navi + ".html";
	j$.ajax({
		url : url,
		success : function(html){
			j$("."+number).after(html);	
		}
	});
}


