/* 
Name: 			Global JS
Description: 	This file contains global JS for Alliance for Aviation Across America site
Project: 		LMG > Alliance for Aviation Across America
Author: 		Tarek Jubaer
Creation: 		v1.0.0
Version: 		1.0.0
Languague: 		CF MX7
---------------------------------------------------------------------
Change History:
Version			Author			Date			Description
1.0.0			Tarek Jubaer	12/30/2008		XXXX - PSD Slicing
												Initial Development
 */
/*
	Resize left and right content accordingly.
*/
function resizeContents()
{
	//Original Height
	var originalHeight = 779;
	//Left content height
	var lftHeight = $('#lftContent').height();
	//Right content height
	var rgtHeight = $('div.rgtContent').height();
	//If left and right content height is smaller than original height then set original height
	if(lftHeight < originalHeight && rgtHeight < originalHeight)
	{
	    $('div.rgtContent').height(originalHeight);
	    $('div.rgtContent').height(originalHeight);
	}
	else if(lftHeight < rgtHeight)//If right content height is greater than left content height then set right content height
	{
	    $('div.rgtContent').height(rgtHeight);
	    $('div.rgtContent').height(rgtHeight);
	}
	else//If left content height is greater than right content height then set left content height
	{
	    $('div.rgtContent').height(lftHeight);
	    $('div.rgtContent').height(lftHeight);		
	}
	$('div.rgtContentHolder').height($('div.rgtContent').height());
	
}
