function fixSides()
	{
	higher = "";
	
	if($('#body_side').height() > $('#banners_side').height())
		{
		$('#banners_side').height($('#body_side').height());
		higher = $('#body_side').height();
		}
	else
		{
		$('#body_side').height($('#banners_side').height());
		higher = $('#banners_side').height();
		}

	$('#inicio_cuerpo_left').height(higher);

	if($('#inicio_cuerpo_left').height() > $('#inicio_cuerpo_right').height())
		$('#inicio_cuerpo_right').height($('#inicio_cuerpo_left').height());
	else
		$('#inicio_cuerpo_left').height($('#inicio_cuerpo_right').height());

	$('#body_side').css({'height' : ''});
	$('#inicio_cuerpo_right').css({'height' : ''});
	}

function showBullet(bullet_id, action)
	{
	if(action == 'show')
		$("#special_bullet_"+bullet_id).slideDown(300);
	else
		$("#special_bullet_"+bullet_id).slideUp(300);
	}

function setQuickPack(pack_id)
	{
	check = document.getElementById('quick_pack_'+pack_id);
	if(!check.checked)
		{
		check.checked = true;
		$('#quick_pack_check_'+pack_id).attr("src", "/public/images/img/check_on.jpg");
		}
	else
		{
		check.checked = false;
		$('#quick_pack_check_'+pack_id).attr("src", "/public/images/img/check_off.jpg");
		}

	$.ajax({
		type: "POST",
		url: "/getter.php?part=quick_pack_list",
		data: $('#quick_packs_form').serialize(),
		async: false,
		success: function(html){
			if(html != 'error')
				$('#quick_packs_link').attr("href", html);
			else
				$('#quick_packs_link').attr("href", "/web/packages.php");
			}
		});
//	$('#group_contact_ids').val($('#cards_selected').val());
//	$('#selected_counter').replaceWith("<span id=\"selected_counter\">"+$('#cards_selected_counter').val()+"</span>")
	}

