
$(document).ready(function($){

	// information
	if ($('#information_top').length) {
		$.getJSON("/cgi-bin/ygujp/info.cgi", {'mode': 'list', 'r': Math.random},
			function(json) {
				$('#information_top').append($('<dl></dl>'));
				for (var i=0; i < json.length; i++) {
					var anchor1 = '';
					var anchor2 = '';
					if (json[i].type == 'info') {
						anchor1 = '<a href="/cgi-bin/ygujp/event.cgi?mode=detail&amp;ym=' + json[i].ym + '&amp;#i' + json[i].idNum + '">';
						anchor2 = '</a>';
						$('#information_top dl').append($('<dt>' + json[i].date + ('</dt><dd>') + anchor1 + json[i].title + anchor2 + '</dd>'));
					} else if (json[i].type == 'headline') {
						if (json[i].url != null && json[i].url != '') {
							anchor1 = '<a href="' + json[i].url + '">';
							anchor2 = '</a>';
						}
						$('#information_top h2').before($('<div id="headline_container"><h3 class="headline">' + anchor1 + json[i].title + anchor2 + '</h3></div>'));
					}
				}

				if ($.browser.mozilla && $.browser.version <= '1.9' ) { // Fx2
					$("#information_top").each(function(){
						$(this).html("<div style='display: block; width: "+$(this).width()+"px;'>"+$(this).html()+"</div>");
					});
				}
			}
		);
	}


	// banner
	if ($('#banner_top').length) {
		$.getJSON("/cgi-bin/ygujp/banner.cgi", {'mode': 'list', 'r': Math.random},
			function(json) {
				for (var i=0; i < json.length; i++) {
					var anchor1 = '';
					var anchor2 = '';
					if (json[i].url != null && json[i].url != '') {
						anchor1 = '<a href="' + json[i].url + '">';
						anchor2 = '</a>';
					}

					$('#banner_top').append($(anchor1 + '<img src="' + json[i].image_dir + json[i].id + '_1.jpg" alt="バナー" />' + anchor2));
				}
			}
		);
	}

});
