$(function(){
	// #marquee
	if ($('body').is('#marquee')) {
		$.ajax({ type:'GET', url:'/xml/art/70005379/info_s.xml', dataType:'xml', success:xmlParser })
	}
	// #sub_index
	else if ($('body').is('#sub_index')) {
		$('img').hover(function(){
			$(this).css('opacity','.5')
		},function(){
			$(this).css('opacity','1')
		})
	}
})

$(window).load(function(){
	// #index
	if ($('body').is('#index')) {
		flag = false
		$('#nav img,#skip').hover(function() {
			$(this).css('opacity','.5')
		},function() {
			$(this).css('opacity','1')
		})
		$('#intro').fadeIn(1500,function() {
			$('h2').fadeIn(2000,function() {
				$(this).next().fadeIn(500,function() {
					$(this).next().fadeIn(500,function() {
						setTimeout(skip,2000)
					})
				})
			})
		}).find('#skip').click(skip).parent().show()
	}
})

// top topics
function xmlParser(xml) {
	var $kiji = $(xml).find('kiji')
	var text = ''
	for (i = 0; i < 7; i++)
		$kiji.eq(i).each(function(){
			text += $('date',this).text() + '　<a href="http://www.no3b.net/info/" target="_top">' + $('title',this).text() + '</a>　　　'
		})
	$('marquee').html(text)
}

// top animation
function skip(){
	if (! flag) {
		$('#intro').hide()
		$('body').addClass('line')
		$('#nav').fadeIn(500,function() {
			$('#main,#topics,#banner,address').fadeIn(1500)
		})
		flag = true
	}
}

