/*
 * default.js - Basic Configuration for All Pages
 *
 * author: thirozumi(thirozumi@gmail.com)
 * date: 2008-03-14
 * rev: 0.1
 */

$(function(){
	
	// IE5.5-6.0でPNGのアルファチャンネルを有効にする
	$(document).pngFix();
	
	// グローバルナビのツールチップを表示する
	/*
	var tooltip = $('#hd h3 img');
	
	$(tooltip).hover(
		function(){
			$(this).parent().parent().append('<span></span>');
			
			var extractAlt = $(this).attr('alt');
				$(this).parent().parent().children('span').text(extractAlt);
			
			$(this).parent().parent().children('span').css({
				display:'block'
			});
		},
		function(){
			$(this).parent().parent().children('span').css({
				display:'none'
			});
			$(this).parent().parent().children('span').remove();
		}
	);
	*/
	// リスト要素の最後を右端に絶対配置
	// $('#top #enter li:last').addClass('logo');
	
	// カレンダーの表示を調整
	$('#wr #ctwr #mn .cthd ul li:has(li)').addClass('recentyear');
	$('#wr #ctwr #mn .cthd ul li:last').addClass('recentmonth');
	
});

