$(document).ready(function(){ 
	var userAgent = navigator.userAgent.toLowerCase();
    $.browser.chrome = /chrome/.test(navigator.userAgent.toLowerCase());
	if($.browser.opera){
		var nh=window.innerHeight;
		var opH=nh-375;
		$("#contentAboutUsHolder").css('min-height', opH);
	}
	else if($.browser.safari && $.browser.mozilla) {
		var fdocH=$(document).height();
		var bodH=fdocH-375; //pass the height here, for firefox and Safari
		$("#contentAboutUsHolder").css('min-height', bodH);
	}
	else {
		var idocH=$(document).height();
		var bodH_ie=idocH-375; //pass the height here, for IE 6
		$("#contentAboutUsHolder").css('height', bodH_ie);
	}
	
});
