$(document).ready(function(){
	$('.limite a[key]').bind({
		'mouseover': function(){
			$('.b_' + this.getAttribute('key')).fadeIn(1);
		},
		'mouseout': function(){
			$('.b_' + this.getAttribute('key')).fadeOut(0);
		}
	});
});
