$(function(){
	$('.abinha:not(:first)').hide();
	$('#planos').show();

	$('.bt-abinha').click(function(){
		$('.abinha').hide();
		$('#' + $(this).attr('id').replace('bt-','')).show();

		$('.bt-abinha').each(function(){
			$(this).attr('src', $(this).attr('src').replace('_on', '_off'));
		});
		
		$(this).attr('src', $(this).attr('src').replace('_off', '_on'));
	});
});