
/* Hoverエフェクト */
$(function(){
	$("ul.topCollection img,ul.topPickup img,ul.topEvent img,ul.topSbtn img,ul.weddingLst img,ul.brandLst img,ul.otherLst img,ul.brandDetailLst img,ul.weddingDetailLst img,div.eventBox .button img,div.contactBox .button img").mouseover(function(){
	$(this).fadeTo("fast",0.7);
	}).mouseout(function(){
	$(this).fadeTo("slow",1);
	});
});

/* サイドメニュー用 */
$(function(){
	$(".menu li a:last").css("border-bottom","1px solid #E4D9C4");
});


