
/*	ページトップスクロール
----------------------------------------------------*/


$(function () {
						$('.page-top').css("cursor","pointer"); 

    if (! $.browser.safari) {
        $('.page-top').click(function () {
            $(this).blur();

            $('html,body').animate({ scrollTop: 0 }, 'normal');

            return false;
        });
    }
});


/*	プレビュー
----------------------------------------------------*/
/*
 $(function(){
$('ul.detail-main-thum a').imgPreview({
    containerID: 'imgPreviewWithStyles',
    imgCSS: {
        height: 250
    },
    onShow: function(link){
        $(link).stop().animate({opacity:0.4,});
        $('img', this).css({opacity:0});
    },
    onLoad: function(){
        $(this).animate({opacity:1}, 300);
    },
    onHide: function(link){
        $(link).stop().animate({opacity:1});
    }
});

 });
*/

/*	lightbox
----------------------------------------------------*/

 $(function() {
                $('.map-select li a').lightBox();
            });
 
 

