// JavaScript Document

window.onload = function(){
	$("#loading").hide();
	$("#header #shine").fadeIn("slow");
	$("#left_bar .body2").slideToggle("slow");
	$("#header #shine").fadeOut(5000);
	$("#link").load("link.php").fadeIn("slow");
}

$(document).ready(function(){
  $('#left_bar > h3').click(function(){
    $(this).next().slideToggle();
  });
});

$(document).ready(function(){
   //偶数行の色を設定
  $('.middle table tr:even').css('background-color', '#111111');
   //奇数行の色を設定
  $('.middle table tr:odd').css('background-color', '#222222');
});

function iFrameLoad( href, target){
	var iFrame = document.getElementById( target );
	iFrame.src = href;
}

var clapFrame = "<iframe style=\"width:190px;height:280px\" scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" frameborder=\"0\" id=\"clap_frame\"></iframe>";
function webClap(){
	$("#clap").empty();
	$("#clap").html(clapFrame);
	iFrameLoad("clap.php", "clap_frame");
}

var leftFrame = "<iframe src=\"left_form.php\" style=\"width:190px;height:200px\" scrolling=\"no\" marginwidth=\"2\" marginheight=\"0\" frameborder=\"0\" id=\"left_form\"></iframe>";
function leftForm(){
	$("#left_bar .form").empty();
	$("#left_bar .form").html(leftFrame);
	$
}