
$(document).ready(function() {
	clipImages();
	adjustContentIndex();
});

function adjustContentIndex()
{
	lefHeight = $('#contentLeftInner').height();
	conHeight = $('#indexContentInnerDiv').height();
	if (lefHeight > conHeight)
	{
		conHeight = lefHeight;
	}
	if (conHeight > 570)
	{
		newConHeight = conHeight + 40;
		$('#indexContent').height(newConHeight);
		$('#indexContentInner').height(newConHeight);
		$('#contentLeft').height(newConHeight);
		$('#contentLeftInner').height(newConHeight);
	}
}
