
$(document).ready(function(){
	$(".imganime").mouseover(function(){
		$(this).imganime("play","2");
	});

	$(".imganime").mouseout(function(){
		$(this).imganime("stop");
	});
	
	$(".fancybox").fancybox({
	'opacity' : true,
	'overlayShow' : false,
	"speedIn" : 500,
	//'transitionIn' : 'elastic',
	'transitionIn' : 'fade',
	'transitionOut' : 'fade'
	//'titlePosition' : 'over',
	//'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
	// return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
	//}
	});
	
	$(document).ready(function(){
	  $("a[rel^='prettyPhoto']").prettyPhoto({
	  	gallery_markup : ""
	  	,autoplay: false
	  	,autoplay_slideshow: false
	  	,social_tools : ""
	  });
	});	
});

$(function() {
	
	 $(".lazyload").lazyload({
		//placeholder: "images/lazyDummy.gif",
		effect : "fadeIn"
		,placeholder : "../images/grey.gif"
		,threshold : 100	//200px 先まで読み込む
	});
	
});



