$(document).ready(function(){ 
        $(document).pngFix(); 
}); 

$(document).ready(function() {
    $('#promotion').cycle({
		fx: 'scrollLeft', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		prev:'#prev', 
    	next:'#next',
		timeout:'10000',
		speed:'500'
	});
});



//.fadeto(フェイドのSpeedミリ秒,透明度 1.0で100%)
$(function(){
$(".fadeImg img").fadeTo(0,1.0);//ページ読み込み時
});
$(function(){
$(".fadeImg img").hover(
function(){
$(this).fadeTo(100,0.7);
},
function(){
$(this).fadeTo(500,1.0);
}
);
});



$(function () {
    if (! $.browser.safari) {
        $('.pgtop').click(function () {
            $(this).blur();

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

            return false;
        });
    }
});

$(function(){
	    $('.scrollBox').jScrollPane({});
});


$(document).ready(function(){
	$.alternation();
});


$( function(){
  // ホバーで表示させたい場合
  $( '.tip' ).tipTip({maxWidth: "auto",defaultPosition:"top", edgeOffset: 5});
});

