function cssCheck() {
	/*
		IE 6 < doesn't support first-child pseudo class - this hack fixes it 
		this is used to ensure the first anchor element doesn't have a 'divider line',
		which is done with CSS as opposed to text.
		
		IE Jscript supports firstChild, yet the CSS model doesn't... go figure
		
		To remove leading dividers in a certain div, place it's ID in the array below
		
	*/
	
	if (document.all) {
		checkIDs = new Array("pcHomeMenu","mainNavigation","footerLinks");
			for (i=0;i<checkIDs.length;i++) {
				try {
					document.getElementById(checkIDs[i]).firstChild.className='firstBar';
				} catch (e) {
				}
			}
	}	
}