// JavaScript Document

jQuery(function($){

	// クリックエリアを拡大する
     $(".linkbox").click(function(){
         window.location=$(this).find("a").attr("href");
         return false;
    });
	
	//スムーズスクロール
	$("#pageTop a").click(function(){
	   $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
	   return false;
	});
	
	//フッターサイトマップの開閉
    $("#contactOpen").click(function() {
      $("#contactForm").slideToggle("slow");
    });
	
	//table tr に class="odd"自動挿入する
	$("tr:odd").addClass("odd");
	
	//Top slider
	$('.fadein img:gt(0)').hide();
	setInterval(function(){$('.fadein :first-child').fadeOut().next('img').fadeIn(2000).end(2000).appendTo('.fadein');}, 10000);
	
	// IE6 png fix
	$("img").pngfix();
			
});


