/*** Narrow pill menu fix ***/
window.onresize=switchWidth2;
switchWidth2();
function switchWidth2 () {
	theW = document.getElementById('pillmenu').offsetWidth-120;
	theW2 = document.getElementById('pillmenu').getElementsByTagName('li');
	theW3 = 0;
	len=theW2.length;
	for ( var i=0; i<len; ++i ){
		theW3 += theW2[i].offsetWidth;
	}
	if(theW<theW3){
		document.getElementById('tabarea').style.height = '80px';
		document.getElementById('pillmenu').style.height = '80px';
	}else{
		document.getElementById('tabarea').style.height = '40px';
		document.getElementById('pillmenu').style.height = '40px';
	}
}
