

$(document).ready(function() {
	
	
	$('#bottom-box .box a').hover(function() {
		$(this).find('img.on').fadeIn('fast'); 
	}, function() {
		$(this).find('img.on').fadeOut('fast');
	});
	
});

