<!--jfade-->
$(document).ready(function() {
		
			$("#topSubInfoArea ul li, #topMainInfoArea ul li").jFade({
				trigger: "mouseover",
				property: 'background-color',
				start: 'EFEFEF',
				end: 'DDDDDD',
				steps: 8,
				duration: 10
			}).jFade({
				trigger: "mouseout",
				property: 'background-color',
				start: 'DDDDDD',
				end: 'EFEFEF',
				steps: 8,
				duration: 10
			});
		});

<!--twitter-->
$(function() {
	$( '#twiline' ).twiline({
	mode: 'user',
	search: 'FC_TOKYO_staff',
	max: 10,
	time: 'default',
	speed:10
	});  
});

<!--Popup-->
$(document).ready(function(){
	$('.button').CreateBubblePopup({ innerHtml: 'FC TOKYOをフォローして<br>最新情報をチェック！！' , 
								   themeName: 'all-black' , 
								   themePath: 'common/BubblePopup/jquerybubblepopup-theme'
	});
});


<!--bgscroll-->
$( function() {
        $('#topMainAreaWrap').bgscroll({scrollSpeed:40 ,direction:'h' });
});

<!--carousel-->
function mycarousel_initCallback(carousel)
{
    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};

jQuery(document).ready(function() {
    jQuery('#topcarousel').jcarousel({
        vertical: true,
		auto:3,
		wrap: 'last',
        initCallback: mycarousel_initCallback
    });
});


