$(window).load(function() {
	setTimeout(function(){$('.breadcrumb1').html($('.breadcrumb').html());},250);

	setTimeout(function(){
			if($('#left_column').height() < $('#center_column').height())
			{
				$('#block_left_editorial').height(
					$('#block_left_editorial').height() + 1 + ($('#center_column').height() - $('#left_column').height())
				);
			}
		},750);
	
	if ($('#left_column').height() != $('#center_column').height())
	{
		$('#block_left_editorial').height(
			$('#block_left_editorial').height() + 1 + ($('#center_column').height() - $('#left_column').height())
		);
	}
});

var PreviousGru = '0';

function ResizeOnly()
{
	setTimeout(function(){
		if($('#left_column').height() > $('#smugglersContent').height())
		{
			$('#smugglersContent').height($('#left_column').height()-262);
		}
	}, 600);
}

function ResizeDiv(e)
{

	if(e != PreviousGru && PreviousGru != '0')
	{
		//First close the old one, if it's open
		if(!$(PreviousGru).is(':hidden'))
		{	var preTemp = PreviousGru;
			PreviousGru = e;
			$(preTemp).toggle('slow',ResizeOnly);
		}
		else //Else just resize content
		{
			PreviousGru = e;
			ResizeOnly();
		}
	}else{
		PreviousGru = e;
		setTimeout(function(){
			ResizeOnly();
		}, 600);
	}
}
