	TechnoNet = {
		Accordion:function(){
			if(!$(".accordion")) return;
			$(".accordion").parent().each(function(){
				if($(this).width() > $(this).children(".accordion").width()){
					$(this).children(".accordion").css("width",$(this).width())
				}
				$(this).hover(
					function(){$(this).children(".accordion").slideDown("slow");},
					function(){$(this).children(".accordion").slideUp("slow");}
				);
			})
		},
		change:function(){
/*
var div = document.createElement("div");
div.style.position = "absolute";
div.style.top = "10px";
div.style.left = "10px";
div.style.border = "5px solid #666666";
div.style.padding = "10px";
div.id = "area"
document.body.appendChild(div)
*/
			if(document.getElementById("top_image") == undefined || null) return;
			var before = setInterval((function(){
				var flg = 0;
				var initialImage = $("#top_image img").attr("src");
				var firstImage = initialImage.replace("main_r_img02","main_r_img01");
				var secondImage = initialImage.replace("main_r_img01","main_r_img02");
				return function(){
					if(flg == 0){
						flg += 1;
						return function(){
							$("#top_image img").fadeOut("slow",function(){
								$("#top_image img").attr("src",secondImage);
							});
							$("#top_image img").fadeIn("slow");
						}();
					}else{
						flg -= 1;
						return function(){
							$("#top_image img").fadeOut("slow",function(){
								$("#top_image img").attr("src",firstImage);
							});
							$("#top_image img").fadeIn("slow");
						}();
					}
				}
			})(),15000)
		}/*,
		test:function(){
			$("#top_article ul li").each(function(){
				this.mouseover(function(){
					$("#top_article ul li").css("backgroundColor","#76b0de");
				});
			});
		}*/
	}
$(function(){
	TechnoNet.Accordion();
	TechnoNet.change();
//	TechnoNet.test();
})
