<!--
/*
住吉アルバム設定


**/
var menuFlag = false;
var currentFlag0 = false;
var currentFlag1 = false;
$(function (){
fotoLink();
floatLayer("#blockThumbnail > p > a");
});
//フェード設定
function fotoLink(){
	$("#blockThumbnail > p > a").hover(
		function(){
		$("#blockThumbnail > p").not($(this).parent()).css({opacity:'0.3'})
		},
		function(){
		$("#blockThumbnail > p")
				.not($(this).parent())
				//.css({opacity:'1'})
				.animate({opacity:'1'}, 1, function(){
					if($.browser.msie){
						this.style.removeAttribute('filter');
					}
				})
		}
	);
}

function floatLayer(target){
	$(target).click(function(){
		var getURL = $(this).attr("href");
		//alert('getURL : ' + getURL)
			$.floatbox({ajax:{url:getURL}});
		return false;
	});
}
