/*
This function sets the height of the featured video column to the height of its parent DIV.

Written by Nick Scott Turner for Gardner Loop (gardnerloop.com)

Created on May 9, 2011
*/

function equalColumnHeight()
	{
	//Get the height of the syndicated DIV.
		//Find the elements.
	var syndicated_div=document.getElementById('syndicated');
	var video_div=document.getElementById('video');

		//Get the heights.
	var syndicated_div_height=syndicated_div.offsetHeight;
	var video_div_height=video_div.offsetHeight;
	
		//Are the heights already equal?
	if(syndicated_div_height>video_div_height)
		{
		//Syndicated height is greater.
		video_div.style.height=syndicated_div_height+'px';
		};
	};
