﻿$(document).ready(function(){

//行事案内TOP　ポップアップ

$(function(){
	$(".popList a").mouseover(
		function(){
			$(this).mousemove(function(e){
				imgW = $(this).next().attr("width");
				imgY = $(this).next().attr("height");
				var x = e.pageX + 15 ;
				var y = e.pageY - imgY -25;
				$(this).next().css({left: x, top: y});
				$(this).next().css({display: "block"});
			});
		}
	);
	$(".popList a").hover(
		function(){
			$(this).mousemove(function(e){
				imgW = $(this).next().attr("width");
				imgY = $(this).next().attr("height");
				var x = e.pageX + 15 ;
				var y = e.pageY - imgY -25;
				$(this).next().css({left: x, top: y});
				$(this).next().css({display: "block"});
			});
		}
		,
		function(){
			$(this).next().css({display: "none"});
		}			
	);
	
});

//美術館、史料館　ギャラリー
$(function() {
	$('div.pics').cycle({
		fx: 'fade',
		speed: 1000});
});



});