$(function(){
	var images = ["../images/index/navi/navi1_o.gif","../images/index/navi/navi2_o.gif","../images/index/navi/navi3_o.gif","../images/index/navi/navi4_o.gif"];
	$.each(images,function() {
		$("<img>").attr("src",this);
	});
	$(".js-tag_insertion a:eq(1)").addClass("em");
	$(".js-tag_insertion a:eq(2)").addClass("strong");
	$(".alpha a img").mouseover(function(){
		$(this).animate({ opacity: 0.7 }, 250, "easeOutCubic");
	});
	$(".alpha a img").mouseout(function(){
		$(this).animate({ opacity: 1 }, 300, "easeOutCubic");
	});
	$(".alpha input").mouseover(function(){
		$(this).animate({ opacity: 0.7 }, 250, "easeOutCubic");
	});
	$(".alpha input").mouseout(function(){
		$(this).animate({ opacity: 1 }, 300, "easeOutCubic");
	});
	$("#cal tr:eq(1) td").css("border","none");
	if ($.browser.msie && $.browser.version == 6)
	{
		$("#entry_list li:first-child").css("background-image","none");
		$("#category_list li:first-child").css("background-image","none");
		$("#cate-entry_list li:first-child").css("background-image","none");
		$("#recent_entry dt:first-child").css("background-image","none");
		$("#list_table table tr:first-child td").css("background-image","none");
		$(".ablogcmsForm tr:first-child td").css("background-image","none");
		$("#room_list_table table tr:first-child td").css("background-image","none");
		$(".entryWrapper table tr:first-child td").css("background-image","none");
	}
});

