//topheaderlftnav
function checkLeftInnerDiv() {
	var topheaderlftdiv = document.getElementById("topheaderlftnav");
	var topheaderlftsubdiv = document.getElementById("topheaderlftnavsub");
	if(topheaderlftdiv != null){
		if(topheaderlftsubdiv != null){
			topheaderlftdiv.style.lineHeight = 40+"px";
		}
		else {
			topheaderlftdiv.style.lineHeight = 60+"px";
		}
	}
}
$(function(){
	checkLeftInnerDiv();
});
