/* page up
----------------------------------------------- */
function pageup() {
	var nv = navigator.userAgent;
	if (nv.match(new RegExp("MSIE 7", "i"))) { posi = document.documentElement.scrollTop; }
	else if (document.all) { posi = document.body.scrollTop; }
	else { posi = window.pageYOffset; }
	moveObje(posi);
}
function moveObje(position) {
	move = position / 10;
	point = parseInt(position - move);
	scrollTo(0,point);
	if (point > 0) { setTimeout("moveObje(point)",1); }
}


/* form
----------------------------------------------- */
function form_btn() {
	document.entry_terms.btn2.disabled =!document.entry_terms.btn[0].checked
}



/*-----------------------------------------------
 jquery
----------------------------------------------- */

/* effect
----------------------------------------------- */
$(function() {
	//fadeIn
	$(".index .image img").hide();
	$(".index .image img").fadeIn("normal");
	
	//slideDown
	$(".index #subNavi").hide();
	$(".index #subNavi").slideDown("normal");
	$(".index #subNavi").each(function(){
		$(this).css("height",$(this).height()+"px");
	});

});


/* target_blank
----------------------------------------------- */
$(document).ready(function() {
	//外部リンク
	$('a[href^="http"]').not('[href^="http://mi-consulting.co.jp/"]').click(function() {
		window.open(this.href, '');
		return false;
	});
	$('a[href^="http"]').not('[href^="http://mi-consulting.co.jp/"]').addClass("exLink");
	
	/*
	$('a[href$=".pdf"]').click(function() {
		window.open(this.href, '');
		return false;
	});
	*/
	//window
	$('a[href$="window_shipley.html"]').click(function() {
		window.open(this.href, 'window', 'width=740, height=550, menubar=no, toolbar=no, location=no, scrollbars=no, resizable=yes');
		return false;
	});

	$('a[href$="window_process.html"]').click(function() {
		window.open(this.href, 'window', 'width=740, height=450, menubar=no, toolbar=no, location=no, scrollbars=no, resizable=yes');
		return false;
	});

});
