/* ---------------------------------------------------------------
	
	TOP.JS
		
--------------------------------------------------------------- */

function resizeImage(){
	var $this = $('#mainImage');
	var $wrapper = $('#wrapper');
	if( $wrapper.width() < 1200 ) $this.width('1200px');
	else $this.width('100%');
}

$(function(){
	resizeImage();
	$(window).resize(function(){
		resizeImage();
	});
	$('#topNewsList').infoDisp({url:"http://www.soh-odori.net/info/recent_json"});
	$('.column2box li a .inner').autoHeight();
	$('.column3box li a .inner').autoHeight();
});
