$(function()
{
	$('.btn_mas').click(function() {
		$(this).parents('.productBlock').find('.groupBlock.'+$(this).parent().get(0).id).toggle();
	});

	$('.btn_mas').toggle(
		function() { $(this).find('img').attr('src','/media/img/common/ico_plus_white.gif'); },
		function() { $(this).find('img').attr('src','/media/img/common/ico_minus_white.gif'); }
	);
});