// JavaScript Document
$(function() {
$.fn.extend({
	randomdisplay : function(num) {
		return this.each(function() {
			var chn = $(this).children().hide().length;
			for(var i = 0; i < num && i < chn; i++) {
				var r = parseInt(Math.random() * (chn - i)) + i;
				$(this).children().eq(r).show().prependTo($(this));
			}
		});
	}
});
$(function(){
	$("[randomdisplay]").each(function() {
		$(this).randomdisplay($(this).attr("randomdisplay"));
	});
});
});
$(function(){
	$("#slider1").easySlider({ //スライドアニメ
		controlsShow: false,
		auto: true,
		speed: 1200, //絵の切り替えスピード（ミリセカント)
		pause: 5000, //絵の表示時間（ミリセカント）
		continuous: false //ループ設定 trueでループ falseで1回のみ
	});
});
$(function(){
	$('#slider2').jshowoff({ //スライド写真
		links: false,
		controls: false,
		changeSpeed: 2000, //写真の切り替えのスピード（ミリセカント）
		speed: 6000, //写真の表示時間（ミリセカント）
		hoverPause: false
	});
});

