$(function() {
$('form input:image').rollover();

$(".information").jCarouselLite({
vertical: true,
hoverPause:true,
visible: 2,
auto:5000,
speed:1000
});

$(".blogentry").jCarouselLite({
vertical: true,
hoverPause:true,
visible: 2,
auto:5000,
speed:1000
});

/*上部リンク*/
$("#link_area").slideBox({width: "100%", height: "160px", position: "top"});

$(".top_link_slide_area").jCarouselLite({
hoverPause:true,
visible: 4,
auto:5000,
speed:1000
});

/*画像切り替え*/
$("#slides").slides({
generatePagination: false,
play: 5000,
pause: 1,
hoverPause: true
});
});
<!--/スクロール-->

<!--拡大-->
$(document).ready(function() {
 
    //On mouse over those thumbnail
    $('.zitem').hover(function() {
//move the image in pixel
var move = -15;
 
//zoom percentage, 1.2 =120%
var zoom = 1.2;

        //Set the width and height according to the zoom percentage
        width = $('.zitem').width() * zoom;
        height = $('.zitem').height() * zoom;
         
        //Move and zoom the image
        $(this).find('img').stop(false,true).animate({'width':width, 'height':height, 'top':move, 'left':move}, {duration:200});
         
        //Display the caption
        $(this).find('div.caption').stop(false,true).fadeIn(200);
    },
    function() {
        //Reset the image
        $(this).find('img').stop(false,true).animate({'width':$('.zitem').width(), 'height':$('.zitem').height(), 'top':'0', 'left':'0'}, {duration:100});  
 
        //Hide the caption
        $(this).find('div.caption').stop(false,true).fadeOut(200);
    });

//On mouse over those thumbnail
    $('.topslide').hover(function() {
//move the image in pixel
var move = -30;
 
//zoom percentage, 1.2 =120%
var zoom = 1.1;

        //Set the width and height according to the zoom percentage
        width = $('.topslide').width() * zoom;
        height = $('.topslide').height() * zoom;
         
        //Move and zoom the image
        $(this).find('img:first').stop(false,true).animate({'width':width, 'height':height, 'top':move, 'left':move}, {duration:200});
         
        //Display the caption
        $(this).find('div.caption').stop(false,true).fadeIn(200);
    },
    function() {
        //Reset the image
        $(this).find('img:first').stop(false,true).animate({'width':$('.topslide').width(), 'height':$('.topslide').height(), 'top':'0', 'left':'0'}, {duration:100});  
 
        //Hide the caption
        $(this).find('div.caption').stop(false,true).fadeOut(200);
    });

});
<!--/拡大-->

$(function() {

// 画面が表示されたときの設定
$('#navi a').stop().animate({'marginLeft':'200px'},500);

$('#navi > li').hover(
function () {
// マウスを乗せたときの設定
$('a',$(this)).stop().animate({'marginLeft':'120px'},200);
},
function () {
// マウスを外したときの設定
$('a',$(this)).stop().animate({'marginLeft':'200px'},200);
}
);
});
