$(function(){

	/* クロスブラウザなフォーカス */
	$("input[type='text'], textarea").focus(function(){
		$(this).css("background","#ff6600");
		$(this).css("color","#ffffff");
	});

	$("input[type='text'] textarea").blur(function(){
		$(this).css("background","#ffffff");
		$(this).css("color","#000000");
	});


	/* クロスブラウザなゼブラテーブル */
	$("table tr:nth-child(even)").css("background", "#dbd49e");


	/* ウィンク効果 */
	$("#wrapper #header h1 a img, #wrapper #header #globalNav ul li a img, #wrapper #header #utilityNav ul li a img,#wrapper #content2 #mainCenter2 #mainRight #image a img").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("slow", "1.0");

	});


	/* タブパネル */
		$("ul.tab li:first-child").addClass("selected");
		$("ul.panel li:not(:first-child)").css("display","none");
		$("ul.tab li").click(function(){
			$("ul.tab li").removeClass("selected");
			$(this).addClass("selected");
			$("ul.panel li").css("display","none");
			$("ul.panel li:eq("+$("ul.tab li").index(this)+")").css("display","block");
		});


	/* スライドショー */
		$("ul.control li:first-child").addClass("selected");
		$("ul.visual li:not(:first-child)").css("display","none");
		$("ul.control li").click(function(){
			$("ul.control li").removeClass("selected");
			$(this).addClass("selected");
			$("ul.visual li").css("display","none");
			$("ul.visual li:eq("+$("ul.control li").index(this)+")").css("display", "block");
			$("ul.visual li:eq("+$("ul.control li").index(this)+")").css("opacity", "0.2");
			$("ul.visual li:eq("+$("ul.control li").index(this)+")").css("filter", "alpha(opacity=20)");
			$("ul.visual li:eq("+$("ul.control li").index(this)+")").fadeTo("slow", 1.0);
		});



});



