
/* メニューロールオーバー */
$(document).ready(function(){
	$("#menu li").hover(function(){
		$(this).fadeTo(300,0);
	},
	function(){
		$(this).fadeTo(300,1);
	});
});

/* タブ */
$(function() {
	$("#splash").tabs({ fx: { opacity: 'toggle'} }).tabs('rotate', 4000);;
//	$("#splash > ul").tabs({ fx: { opacity: 'toggle'} }).tabs('rotate', 4000);;
//	$("#ui-tab").tabs();
});

/* タブ */
$(function() {
//	$("#splash").tabs({ fx: { opacity: 'toggle'} }).tabs('rotate', 4000);;
//	$("#splash > ul").tabs({ fx: { opacity: 'toggle'} }).tabs('rotate', 4000);;
	$("#ui-tab").tabs();
});


