
$(document).ready(function() {
	$("a.fancybox").fancybox({'width':600,'height':200,'type':'iframe'});
});

/* タブ切り替え */
function ShowMember(){
	$('#member').show();
	$('#mihimaru').hide();
}
function ShowMihimaru(){
	$('#member').hide();
	$('#mihimaru').show();
}

