
				/*<![CDATA[*/
				/********************************************
				bb2.css <------------------- IE style sheet used above
				
				Description:	does auto width for site
				*******************************************/
				autoWidth = function(){
					if (!document.getElementById("centerArea")){return;}
					if (!document.getElementById("HomepagePrd")){return;}
					var allW = document.getElementById("centerArea").offsetWidth;	
					var itemCount = document.getElementById("HomepagePrd").className;
					var itemEnd = itemCount.indexOf(" ");	
					if (itemEnd == -1){itemEnd = itemCount.length;}
					itemCount = parseInt(itemCount.substring(4,itemEnd));	
					allW = parseInt(allW);	
					/* added 10/09/06 to fix 1024x768 max size prob with 2 col instead of 3*/
					allW = (allW - 4);
					
					if (allW < 464){allW = 464;}	
					var sCount = parseInt(allW / 232);	
					
					if (sCount > 4){sCount = 4;}	
					
					if (sCount > itemCount){sCount = itemCount;}
					var sPd = parseInt((allW - (232 * sCount)) / (sCount+sCount));
					var hps;
					sPd = sPd +"px";	
					for (var i=1;i<=itemCount;i++){
						if (document.getElementById("Section"+i)){
							hps = document.getElementById("Section"+i);
							hps.style.posTop = "0px";
							hps.style.paddingLeft = 0;
							hps.style.paddingRight = 0;
							hps.style.paddingLeft = sPd;		
							
							if ((i / sCount).toString().indexOf(".") == -1){
								hps.className = "SectionRt";
							}else{
								hps.className = "Section";
								hps.style.paddingRight = sPd;
							}
						}	
					}
				}
				
				window.onresize = autoWidth;
				window.onload = autoWidth;
				/*	]]>*/
				