$(function() {
	$('#Banner').crossSlide({
		speed: 25,
		fade: 1
	}, [
		{ src: '/images/Commercial_Landscape.jpg', dir: 'up' },
		{ src: '/images/Domestic_Gardens.jpg', dir: 'down' },
		{ src: '/images/Interior_Landscape.jpg', dir: 'up' },
		{ src: '/images/Plantation_Nursery.jpg', dir: 'down' },
		{ src: '/images/Tree_Care.jpg', dir: 'up' }
	]);
	
	fixLayoutHeights();
	
});

function fixLayoutHeights()
{
	var divs = {
		'content' : $('#Content'),
		'right' : $('#RightColumn'),
		'navigation' : $('#Navigation'),
		'body' : $('#Body')
	};
	//alert ('The size of the content divs are as follows:\nContent: '+divs.content.height()+'\nRight: '+divs.right.height()+'\nNavigation: '+divs.navigation.height()+'\nBody: '+divs.body.height());
	if (divs.content.height() < divs.right.height())
	{
		divs.content.height(divs.right.height());
	}
	
	if (divs.body.height() < divs.navigation.height())
	{
		divs.body.height(divs.navigation.height());
	}
	
}