		var viewall = false;
		var contentWidth = null;
		
		function changeDeptImage(pid, coll, seq){
			if(seq < 10){
				seq = '0'+seq;
			}
			document.getElementById(coll).innerHTML = '';
		}
		
		function fixClip(){
			var browserWidth = document.body.clientWidth ? document.body.clientWidth : window.innerWidth;
			if(browserWidth < 879){
				browserWidth = 879;
			}
			if(!viewall){ 
				displayDept(counter)
			}else{
				displayViewall()
			}
			if (document.getElementById){
				document.getElementById('contentMask3').style.clip = 'rect(0px,'+browserWidth+'px, 400px, 20px)';
				document.getElementById('contentMask3').style.width = browserWidth+'px';
				document.getElementById('content3').style.width = contentWidth+'px';
			}			
		}
				
		function getDeptMOver(span){
			return function(){span.style.visibility = 'visible'};
		}
		
		function getDeptMOut(span){
			return function(){span.style.visibility = 'hidden'};
		}
		
		function scrollMe(){
			// speed, dragwidth, trackWidth, trackObj, upObj, downObj, dragObj, contentMaskObj, contentObj
			myScroll = new ScrollObj(6,1,302,"track3","up3","down3","drag3","contentMask3","content3");
		}
		
		fixClip();
				scrollMe();
				if(! noScroll){
					document.getElementById('deptScroller3').style.display = 'block';
				}

				function displayDept(count){
					contentWidth = ((count * 300) + 95);
					var tds = document.getElementById('deptImgs3').getElementsByTagName('td');
					var tables = document.getElementById('deptImgs3').getElementsByTagName('table');
					for(i=0; i < tables.length; i++){
						if(division != 12204 && division != 12205 && division != 12105 && division != 12104){
							addEvent(tables[i], 'mouseover', getDeptMOver(tables[i].getElementsByTagName('span')[0]));
							addEvent(tables[i], 'mouseout', getDeptMOut(tables[i].getElementsByTagName('span')[0]));
						}else{
							(tables[i].getElementsByTagName('span')[0]).style.visibility = 'visible';
						}
					}
				}