$(function(){
	$("img").each( function(){
		$(this).attr("src", $(this).attr("src")+"?dammy=0817-01");
	});
	$(".index_button a img, .index_bnr a img")
	.hover(
		function(){ $(this).animate({opacity: 0.5},200); },
		function(){ $(this).animate({opacity: 1.0},400); }
	);
});

