//headloop
$('#header_in').cycle({
	fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, scrollRight, turnDown, curtainX, etc...
	timeout: 8000,
	delay: -2000
});

//DropDown
$(function() {
	$('#nav').droppy();
});

//外部リンクの処理
$(document).ready(function(){
	$('a.out').click(function(){
	window.open(this.href, '');
	return false;});
});

//ページスクロール
$(function(){
	$("a[href*='#']").easingScroll({
		easing: "easeInOutCubic",
		duration: 1000
	});
});

//装備紹介アコーディオン
$(function(){
	$(".arms_box:not(:first)").css("display","none");
	$("p.arms_main:first").addClass("selected");
	$("p.arms_main").click(function(){
		if($("+.arms_box",this).css("display")=="none"){
			$(".arms_box").slideUp("slow");
			$("+.arms_box",this).slideDown("slow");
			$("p.arms_main").removeClass("selected");
			$(this).addClass("selected");
		}
	}).mouseover(function(){
		$(this).addClass("over");
	}).mouseout(function(){
		$(this).removeClass("over");
	});
});
