﻿//=========================================================
//
//	jQuery INDEX-MOTION.JS
//
//=========================================================

$(function(){
////////////////////////////////////////////////////
//　Slider Motion
////////////////////////////////////////////////////
	$('#slider').plusSlider({
	        displayTime: 4000,
		speed: 1000,
		createArrows: true,
		pauseOnHover: true,
	        sliderEasing: 'easeInOutExpo',
	        sliderType: 'slider' 
	});
////////////////////////////////////////////////////
//　Button MouseOverEffect
////////////////////////////////////////////////////
	$(window).load(function(){

		$("a.prev,a.next,.slide1 a,.slide2 a,.slide3 a,.slide4 a").hover(function(){
			$(this).children('img').stop().animate({opacity:'0'});
		},function(){
			$(this).children('img').stop().animate({opacity:'1'});
		});

	});
});

