﻿// JavaScript Document

$(function() {
	pageHandle();
	pageAnchor();	//ページ内リンクの表示
	if($('body').is('#staff_page')) staff_fn();
	//promo_fn();
});

function promo_fn() {


	var promo_html = '';
	promo_html += '<a href="/event.html">';
	promo_html += '<img src="/images/promo_201007.gif" alt="マージャン屋さん7周年！大大大感謝の場代70円！" width="660" height="81" border="0">';
	promo_html += '</a>';
	
	$('.promo').css("display","block").append(promo_html);

}

function staff_fn() {

	$('div#staff div.staff_data').css('float','left');
	//ページトップへボタン挿入
	$('p.pagetop:last').clone().insertAfter('div#staff div.staff_data:odd'); 
	if($('div.staff_data').length%2 != 0) $('p.pagetop:last').clone().insertAfter('div#staff'); 

}

function pageHandle() {
	
	$('h3:first').css('margin-top','10px');	//最初のレベル3見出しのマージン調整
	
	$("#rightbox:empty").load("index.html #rightbox > *");
	
}

//ページ内リンクの表示
function pageAnchor() {

	$('div#contents a[class=anchor]').each(function(){
		var write_html = '<a href="#' +$(this).attr('id')+ '">' +$(this).text()+ '</a>';
		$('<li></li>').html(write_html) .appendTo('ul.pageAnchor:first'); 
	});
	
}


/********************************************/
/************ ▼ロールオーバー▼ ************/
$(function() {
	$('img[src*="_off"]').hover(
								function() {
									$(this).attr('src',$(this).attr('src').replace('_off.', '_on.'));
								},
								function() {
									$(this).attr('src',$(this).attr('src').replace('_on.', '_off.'));
								}
								);
});
/************ ▲ロールオーバー▲ ************/
/********************************************/
