// JavaScript Document //
// ロールオーバー //
$(function(){

	$("img[src='images/top.gif']").mouseover(function(){

		$(this).attr("src","images/top_on.gif");

	}).mouseout(function(){

		$(this).attr("src","images/top.gif");

	});

	

	$("img[src='images/hajimete.gif']").mouseover(function(){

		$(this).attr("src","images/hajimete_on.gif");

	}).mouseout(function(){

		$(this).attr("src","images/hajimete.gif");

	});

	

	$("img[src='images/shiharai.gif']").mouseover(function(){

		$(this).attr("src","images/shiharai_on.gif");

	}).mouseout(function(){

		$(this).attr("src","images/shiharai.gif");

	});

	

	$("img[src='images/kaisya.gif']").mouseover(function(){

		$(this).attr("src","images/kaisya_on.gif");

	}).mouseout(function(){

		$(this).attr("src","images/kaisya.gif");

	});

	

	$("img[src='images/cart.gif']").mouseover(function(){

		$(this).attr("src","images/cart_on.gif");

	}).mouseout(function(){

		$(this).attr("src","images/cart.gif");

	});
});

// スライダー //
$(function(){
	
	$('.slider').mobilyslider({
		content: '.sliderContent',
		children: 'div',
		transition: 'horizontal',
		animationSpeed: 400,
		autoplay: true,
		autoplaySpeed: 5000,
		pauseOnHover: true,
		bullets: true,
		arrows: true,
		arrowsHide: true,
		prev: 'prev',
		next: 'next',
	});
});

