// hover fade
$(document).ready(
function(){
	$('#header dt a, .bnr p a, div#banner div.wrapper div.wrapper2 dl dt a').hover(function(){
		$(this).fadeTo("fast", 0);
	},function(){
		$(this).fadeTo("normal", 1.0);
	});
});


