//IE6仕分
var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
if(IE6){
	$(function(){
		window.location.href = "index_ie6.html";
		return;
	});
}
$(document).ready(function(){
	$("#Controller").jFlow({
		controller: ".jFlowControl", // must be class, use . sign
		slideWrapper : "#jFlowSlider", // must be id, use # sign
		slides: "#mainSlides",  // the div where all your sliding divs are nested in
		selectedWrapper: "jFlowSelected",  // just pure text, no sign
		width: "100%",  // this is the width for the content-slider
		height: "427px",  // this is the height for the content-slider
		duration: 300,  // time in miliseconds to transition one slide
		prev: ".jFlowPrev", // must be class, use . sign
		next: ".jFlowNext", // must be class, use . sign
		auto: true	
	});
});
