$(function(){
//Mainmenu
	$('#sitemenu li a').each(function(){
		var alt = $(this).text();
		var menuid = $(this).attr('id');
		$(this).empty();
		if($(this).attr('class')=='on'){
			$('<img src="./img/'+menuid+'_ro.gif" alt="'+alt+'" />').prependTo(this);
		}else{
			$('<img src="./img/'+menuid+'_df.gif" alt="'+alt+'" />').prependTo(this);
		}
		});

	$('#sitemenu li a img').hover(function(){
		var imgsrc = $(this).attr('src').replace('_df','_ro');
		$(this).attr('src',imgsrc);
		},function(){
		var imgparent = $(this).parent();
		if($(imgparent).attr('class')=='on'){
		}else{
				var imgsrc = $(this).attr('src').replace('_ro','_df');
		$(this).attr('src',imgsrc);
		}
	});

	$('table.kakeibotable tr.kt_head td:nth-child(3)').css({'background-color':'#f6f6f6','padding':'5px'});
	$('table.kakeibotable tr.kt_head td:nth-child(5)').css({'background-color':'#f6f6f6','padding':'5px'});
	$('table.kakeibotable td:nth-child(3)').css('font-size', '80%');
	$('table.kakeibotable td:nth-child(5)').css('font-size', '80%');
	$('table.kakeibotable td:nth-child(4)').css('border-left', '5px solid #EDF1D6');
	$('table.kakeibotable td.notable').css({'border-bottom':'1px solid #edf1d6','background-color':'#edf1d6'});


	$('.bt a img').hover(function(){
		var imgsrc = $(this).attr('src').replace('.','_ro.');
		$(this).attr('src',imgsrc);
		},function(){
		var imgsrc = $(this).attr('src').replace('_ro.','.');
		$(this).attr('src',imgsrc);
	});
});
