// JavaScript Document
$(document).ready(function(){ 

	//ロールオーバー（html.imgでclassで指定）
    //$(".latest_img").fadeTo("slow", 0.7);//ページ読み込み時の設定

    $(".latest_img").hover(function(){ 
    $(this).fadeTo("slow", 0.6);//マウスオンした時の設定

    },function(){ 
    $(this).fadeTo("slow", 1);//マウスアウトしたときの設定

    }); 
	
	//読み込み時フェードイン
	$("#imgin").fadeIn("slow");
	
$(function() {
		$("#tabs").tabs();
	});
$(function() {  
      $('#slider').easySlider({  
        auto: true,  
        continuous: true,
		speed: 800,
		pause: 15000
      });  
    });   


});
