﻿$(document).ready(newsFlashInit);
function newsFlashInit(){
	$("#newsPane").hide();
	$("#newsPane").css("visibility","visible");
	var newsOpened = false;
	$.get("/contents/news/top_new.xml",null,function( data, status ){
		if (status == "success") {
			var count = 0;
			$("list",data).each(function(){
				var link_target = $("target",this).text() == "1" ? "_blank" : "_self";
				var link_url = $("url",this).text() ? $("url",this).text() : "./contents/news/";
				if(count < 10) $("#newsList").append('<li><a href="' + link_url + '" target="' + link_target + '">■ ' + $("date",this).text() + ' ' + $("title",this).text() + '</a></li>');
				count ++;
			});
			$("#newsList li").hover(
				function(){$("a",this).css("color","#fff");$(this).css("backgroundColor","#000");},function(){$("a",this).css("color","#000");$(this).css("backgroundColor","");});
			$("#newsPane").append('<p><a href="/contents/news/" >>>一覧へ</a></p>');
			$("#newsPane p").css("fontSize","11px");
			$("#newsPane p").css("textAlign","right");
			$("#newsPane p").css("marginBottom","10px");
			$("#newsPane p").css("marginRight","15px");
			$("#newsPane p a").hover(
				function(){$(this).css("color","#fff");$(this).css("backgroundColor","#000");},function(){$(this).css("color","#000");$(this).css("backgroundColor","");});
			//-- --//
			$("#newsLink").attr("href","#");
			$("#newsLink").click(function(){
				if(newsOpened) {
					$("#newsPane").fadeOut("normal",function(){$(this).hide();});newsOpened = false;
				}else{
					$("#newsPane").fadeTo(0,0.8);$("#newsPane").slideDown("normal",function(){});newsOpened = true;
				}
				return false;
			});
			//$("#newsPane").click(function(){location.href="./contents/news/";});
		}
	},"xml");
}