$(function(){

/***************************************************************************************/
//メッセージ関係
/***************************************************************************************/



//グローバルメニュー関係
	//メニューを消す
    $("#menu li ul").hide();
    $("#menu li").hover(
        function(){
        $("ul:not(:animated)",this).show("fast");
        },
        function(){
        $("ul",this).slideUp("fast");
		});








/***************************************************************************************/
// 高さを揃える　トップページのメニュー部分
$.fn.sameHeight = function(){
  var h = 0;
  return this.each(function(){
    h = Math.max(h, $(this).outerHeight());
  }).height(h);
};

$('.sameheight').sameHeight();

$.fn.sameHeight2 = function(){
  var h2 = 0;
  return this.each(function(){
    h2 = Math.max(h2, $(this).outerHeight());
  }).height(h2);
};

$('.sameheight2').sameHeight2();

$.fn.sameHeight3 = function(){
  var h3 = 0;
  return this.each(function(){
    h3 = Math.max(h3, $(this).outerHeight());
  }).height(h3);
};

$('.sameheight3').sameHeight2();


/***************************************************************************************/
//文字サイズの変更
/***************************************************************************************/

$("#font_size_larger").click(function(){
$("body").css("font-size","120%");
});

$("#font_size_smaller").click(function(){
$("body").css("font-size","100%");
});



/***************************************************************/
});//jquery





//ムービーの変更


    $(document).ready(function() {
        $('#slider').s3Slider({
            timeOut: 5000
        });
        $('#slider1').s3Slider({
            timeOut: 8000
        });
        $('#slider2').s3Slider({
            timeOut: 5000
        });
    });


