if (document.images) {
	
		homeA = new Image
		homeB = new Image
		
		qualificationsA = new Image
		qualificationsB = new Image
		
		servicesA = new Image
		servicesB = new Image
		
		locationsA = new Image
		locationsB = new Image
		
		containerA = new Image
		containerB = new Image
		
		newsA = new Image
		newsB = new Image
		
		contactsA = new Image
		contactsB = new Image
		
		
		homeA.src ="../graphics/01a_home.gif"
		homeB.src ="../graphics/01b_home.gif"
		
		qualificationsA.src ="../graphics/02a_qualifications.gif"
		qualificationsB.src ="../graphics/02b_qualifications.gif"
		
		servicesA.src ="../graphics/03a_services.gif"
		servicesB.src ="../graphics/03b_services.gif"
		
		locationsA.src ="../graphics/04a_locations.gif"
		locationsB.src ="../graphics/04b_locations.gif"
		
		containerA.src ="../graphics/05a_container.gif"
		containerB.src ="../graphics/05b_container.gif"
		
		newsA.src ="../graphics/06a_news.gif"
		newsB.src ="../graphics/06b_news.gif"
		
		contactsA.src ="../graphics/07a_contacts.gif"
		contactsB.src ="../graphics/07b_contacts.gif"
		
	}
	
	else {
		homeA = ""
		homeB = ""
		
		qualificationsA = ""
		qualificationsB = ""
		
		servicesA = ""
		servicesB = ""
		
		locationsA = ""
		locationsB = ""
		
		containerA = ""
		containerB = ""
		
		newsA = ""
		newsB = ""
		
		contactsA = ""
		contactsB = ""
		
		
		document.home = ""
		document.qualifications = ""
		document.services = ""
		document.locations = ""
		document.container = ""
		document.news = ""
		document.contacts = ""
		
	}
	
	myPix = new Array("../photos/01header_photo.jpg","../photos/02header_photo.jpg","../photos/03header_photo.jpg","../photos/04header_photo.jpg")
	imgCt = myPix.length
	
	function choosePic() {
		if (document.images) {
			randomNum = Math.floor((Math.random()*imgCt))
			document.headerPicture.src = myPix[randomNum]
			
		}
	}
	
	function newWindow(leftscroll) {
		locationsWindow = window.open ("../webpages/locations.htm","locationsWin","width=345, height=600, scrollbars=yes")
		locationsWindow.focus()
		setTimeout("locationsWindow.scroll("+leftscroll+",0)",1000)
	}
	
	function picWindow(image) {
		imageWindow = window.open(image, "imageWindow", "width=644,height=521")
		imageWindow.focus()
	}
	
	function pic2Window(image2) {
		image2Window = window.open(image2, "image2Window", "width=796,height=266")
		image2Window.focus()
	}
	
	function mapWindow(northwest) {
		northwestWindow = window.open(northwest, "northwestWindow", "width=300,height=423")
		northwestWindow.focus()
	}