// JavaScript Document
$(function(){
	if($.browser.msie && parseInt($.browser.version) == 6){
		DD_belatedPNG.fix('#header img');
		DD_belatedPNG.fix('#visual strong img');
		DD_belatedPNG.fix('#wrapper');
	}
});

$(function(){
	$("a.hover").mouseover(function(){
		$(this).fadeTo(150, 0.8);
	});
	$("a.hover").mouseout(function(){
		$(this).fadeTo(150, 1);
	});
});
