<!--
$(document).ready(function(){

	// Safari3 未満は動作させない
	if ( jQuery.browser.safari ) {
		var tmp = jQuery.browser.version.split(".");
		if ( tmp[0] > 520 ) { var safari3 = 1; }
	}

	if ( jQuery.browser.msie || jQuery.browser.mozilla || jQuery.browser.opera || (jQuery.browser.safari&&safari3) ) {
		$('#quizArea').css( "display", "block" );

		$('#quizAreaTicker').cycle({
			fx: 'scrollUp', 
			pause: 1,
			timeout: 5000, 
			speed: 1000
		});
	}
});
//-->

