/*** img alt非表示 ***/
$(window).ready(function(){$('img').removeAttr('alt');});


/*** お知らせ表示 ***/
$(function(){
	$('.fade li').hide();
});

var i = 0;
var int=0;

$(window).bind("load", function() {
	var int=setInterval("doFade(i)",100);
});

function doFade() {
	var list = $('.fade li').length;
	if (i >= list) {
		clearInterval(int);
	}
	$('.fade li').eq(i).fadeIn(1000);
		i++;
}

/*** TOPメインスライド設定予備 * 30秒auto *
$(document).ready(function(){
	$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 30000, true);
});
*******/


/*** Google Analyticsトラッキングコード ***/
var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-17486357-1']);
	_gaq.push(['_trackPageview']);
(function() {
	var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
	ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
	var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

