function navigateTo(where) {

// copyright 2005 Ray Merrill
// all rights reserved

switch(where) {
	case 1000: // home page
		top.location = "index.htm";
	break
	
	case 1001: // zoom to view parts sample 1
		top.location = "page_zoom_index.htm";
	break
	
	case 1100: // equipment and capabilities
		top.location = "page_1100.htm";
	break
	
	case 1200: // commitment to clients
		top.location = "page_1200.htm";
	break
	
	case 1300: // work samples - INTRODUCTION
		top.location = "page_1300.htm";
	break
	
	case 1301: // zoom to view parts sample 2
		top.location = "page_zoom_sample2.htm";
	break
	
	case 1310: // work samples - AIRDUCT 1
		top.location = "page_1310.htm";
	break
	
	case 1320: // work samples - AIRDUCT 2
		top.location = "page_1320.htm";
	break
	
	case 1330: // work samples - AIRDUCT 3
		top.location = "page_1330.htm";
	break
	
	case 1400: // employment opportunities
		top.location = "page_1400.htm";
	break
	
}
}
