var SITE = window.location.hostname;

function resize() {
	//alert("resize2 called");
	var height = 0; 
	var lowestElement = 0;
	if((SITE == 'www.biologicalservices.com' || SITE == 'www.therenewableanswer.com' || SITE == 'www.biologicalcleaningservice.com' || SITE == 'biologicalcleaningservice.com' || SITE == 'www.gbsciencegroup.com') && (page == 'index.php' || page == 'contact.php' || page == 'opportunities.php')) {
		var contentDiv = '#topContent';
	} else {
		var contentDiv = '#contentIndex, #content, #content2';
	}
	$(contentDiv).find('*:visible').not('option').each(function(){
 		var pos = $(this).offset();
		var bottomOfCurrent = pos.top + $(this).height();
 		if (bottomOfCurrent >= lowestElement) {
			lowestElement = bottomOfCurrent;
			$('.lowest').removeClass('lowest');
			$(this).addClass('lowest');
			//alert('id: ' + $(this).attr('id') + ' class: ' + $(this).attr('class') + ' lowestElement: ' + lowestElement);
		}
	});

	var bottomOfLowest = lowestElement;
	//alert(bottomOfLowest);
	/*var lowestOnPageTop = $('.lowest').position();
	lowestOnPageTop = lowestOnPageTop.top;
	var lowestOnPageHeight = $('.lowest').height();
	var bottomOfLowest = lowestOnPageTop + lowestOnPageHeight;*/
	var contentOffset = $(contentDiv).offset();
	var contentOffsetTop = contentOffset.top;
	//alert(contentOffsetTop);
	var newHeight = contentOffsetTop + bottomOfLowest + 50;
	//alert(newHeight);

	if(SITE == 'www.dclarkfarr.com' || SITE == 'dclarkfarr.com') {
		if(newHeight < 1000) {
			newHeight = 1000;
		}
		if(bottomOfLowest < 650) {
			bottomOfLowest = 650; 
		}
	} else {
		if(newHeight < 600) {
			newHeight = 600;
		}
		if(bottomOfLowest < 555) {
			bottomOfLowest = 555;
		}
	}

	$(contentDiv).css('height', (bottomOfLowest + 'px'));
	$('#main').css('height', ((newHeight + 150) + 'px'));
	if($.browser.msie) { 
		if($(contentDiv).css('background-color') == 'transparent') {
			$(contentDiv).css('background-color', '');
			var bgColor = $(contentDiv).css('background-color');
			$(contentDiv).css('background-color', bgColor)
		}
		
		if($('#main').css('background-color') == 'transparent') {
			$('#main').css('background-color', '');
			var bgColor = $('#main').css('background-color');
			$('#main').css('background-color', bgColor)
		}
	}
	
	/*if(SITE == 'www.greenlawnandhome.com') {
		$('#main, #header, #rightSide2, .navTab, #footer, #content').corners("12px transparent");
	}*/
}

/*$(window).bind('load', function () {
	resize();
});*/

$(function() {
	window.setTimeout('resize()', 50);
});
