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

$(function(){

	// 長い半角文字列の折り返しを有効にする
	$('#wr #main p *').linkwrapper();
	
	// 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();
		}
	);
	
	// IEで実装していないCSS2-3による表示調整
	$('#wr #mn .posts-navigation li:first').css({
		'margin-left':'0',
		'padding-left':'0',
		'border':'none'
	});
	
});

