$(function() {
	// スポットガイドの下層カテゴリ開閉
	$('.spotguide dt').click(function() { $(this).next().slideToggle('fast'); });
	$('.spotguide dt').hover(
		function() { $(this).css('cursor','pointer'); },
		function() { $(this).css('cursor','auto'); }
	);
	// 記事本文
	$('.rich-text img').each(function() {
		var align = $(this).attr('align');
		$(this).wrap('<div class="img-box '+align+'"></div>');
		$(this).after('<br />'+$(this).attr('title'));
		$(this).removeAttr('align');
	});
	// ライトボックス
	$('.rich-text a').filter("[href$='.jpg'],[href$='.jpeg'],[href$='.png'],[href$='.gif']").prettyPhoto();
	$('a[rel*=lightbox]').prettyPhoto();

	// URL強制折り返し
	if (jQuery.browser.msie) {
		$('.spot-info ').css('word-break', 'break-all');
	} else {
		$('.spot-info a').linkwrapper();
	}

	// 最新情報の記事内の画像サイズ制限
	$('#center .news-and-topics div.text img').each(function(){
		if ($(this).width() > 160) {
			$(this).width(160);
		}
	});
});
