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);
	}
