jQuery.noConflict();

	var j$ = jQuery;

j$(document).ready(
		function(){
			j$('#mainVisual').innerfade({
       			animationtype:'fade',
				speed: 1000,
				timeout: 10000,
         	 	type: 'sequence'
		});
	});
   
   /**
	●アニメーションの種類(デフォルト値は'fade')
	animationtype:'slide','fade'
	
	●フェイドの速さ(デフォルトは'normal')
	speed:ミリ秒 又は 'slow','normal',''fast'
	
	●フェイド間の時間の設定(デフォルトは2000）
	timeout:ミリ秒
	
	●スライドショーの再生方法(デフォルトは'sequence'）
	type:'sequence','random','random_start'
	
	●表示領域の高さ、(デフォルトはauto)
	containerheight:ピクセル値 または　'auto'
	
	●フェード領域のスタイルシート(デフォルトは'innerfade')
	runningclass: CSSのパス または 'innerfade'
	
	**/
