// JavaScript Document
/*
	The strings are ordered alphabetically:
		these are html code that will be feed to there corresponding elements 
*/
var strCopyright =
	'Website Images, Content &amp; Design &copy 2006 DSC: Diggins Safety Consulting  &amp; ' +
	'<a href=\"http://www.desertsolutions.net" target="_blank" >' +
	'<img src =\"imgDsLogo.gif\" style=\"width:20px; height:20px; \"   /> Desert Solutions</a>' +
	' All Rights Reserved';
var strContactUs = 
	'<font size="1">Samuel E. Diggins, CSP, CHMM <br>' +
	'<a href=\"mailto:Sam@DSC-EHS.com?subject=Contact from DSC-EHS web-site\" style=\"color:#000000\"> Sam@dsc-ehs.com</a><br> ' +
	'Phone: (480) 510-7977 <br>' +
	'Tempe, AZ 85282</font>'
var strHeader = 
				'<img src=\"images/imgDSCLogo.jpg\"  alt=\" Sam Diggins Consulting :  HAZWOPER , SSTA , LOTO, LO/TO , lookout tagout, OHSAS, safety Training\" id=\"imgHeader\" />';		
var strNavigator =
	'<a href=\"services.htm#industrial\">Industrial Safety</a> ' +
    	'| <a href=\"services.htm#construction\">Construction Safety</a>  ' +
	'| <a href=\"services.htm#\hygiene">Industrial Hygiene</a> ' + 
    	'| <a href=\"services.htm#life\">Life Safety</a>  <br />' +
	' <a href=\"services.htm#emergency\">Emergency Response</a> ' + 
	'| <a href=\"services.htm#prgManagement\">Program Management</a> ' +
	'| <a href=\"services.htm#ohsas18001\">OHSAS 18001</a> ' + 
	'| <a href=\"services.htm#orgDevelopment\">Organizational Development </a>'  +
     	'| <a href=\"training.htm\">Safety Training</a>' +	
	'<br /> <hr />';
var strBottomLinks = 
	'<a href=\"services.htm#industrial\">Industrial Safety</a> ' +
	'| <a href=\"services.htm#construction\">Construction Safety</a>  ' +
    	'| <a href=\"services.htm#\hygiene">Industrial Hygiene</a> ' + 
    	'| <a href=\"services.htm#life\">Life Safety</a>' +
	'| <a href=\"services.htm#emergency\">Emergency Response</a> <br />' + 
	' <a href=\"services.htm#prgManagement\">Program Management</a> ' +
	'| <a href=\"services.htm#ohsas18001\">OHSAS 18001</a> ' + 	
	'| <a href=\"services.htm#orgDevelopment\">Organizational Development </a>' +
     	'| <a href=\"training.htm\">Safety Training</a>';	
var strTopLinks =
	'<a href=\"index.htm\">Homepage</a> ' + 
	'| <a href=\"about.htm\">About <span class=\"Logo\">DSC </span></a> ' +
	'| <a href=\"training.htm\">Safety Training</a> ' +
	'| <a href=\"services.htm\">Services</a> ' +
	'| <a href=\"contactUs.htm\">Contact Us</a>';

var strServices =
	'<a href=\"services.htm#industrial\">Industrial Safety</a> <br />' +
    	'<a href=\"services.htm#construction\">Construction Safety</a> <br />' +
	'<a href=\"services.htm#hygiene\">Industrial Hygiene</a> <br />' +
    	'<a href=\"services.htm#life\">Life Safety</a> <br />' +
	'<a href=\"services.htm#emergency\">Emergency Response</a> <br />' +
	'<a href=\"services.htm#prgManagement\">Program Management</a> <br />' +
	'<a href=\"services.htm#ohsas18001\">OHSAS 18001</a> <br />' +
	'<a href=\"services.htm#orgDevelopment\">Organizational Development</a> ' + 
	'<a href=\"services.htm#building\">Specialized Building Design &nbsp; &nbsp; and Construction</a>' +
     	'<br /><a href=\"training.htm\">Safety Training</a>';	
		
//Mike G: this method will relocate the two mention divs to their proper coordinates
/*
	note: If you want to be smart ass and you think you can make this method more efficient
		  go for it! But I will tell you right now . . . it is fruitless effort. number convertion
		  will take too much process time and too much effort.
*/
function moveFinePrint(divContent)
{
	var top = 158;
	top += ( parseInt(divContent) + 4);
	document.getElementById('divBottomLinks').style.top = (top.toString() + 'px');
	top += 28;
	document.getElementById('divCopyright').style.top = (top.toString() + 'px');	
	
}
/*
	Mike G:
	Load all the repetative static information to their respective elements
*/
function loadAllDiv()
{
	document.getElementById('divCopyright').innerHTML = strCopyright;
	document.getElementById('pTopHeader').innerHTML = strTopLinks;
	document.getElementById('divHeader').innerHTML = strHeader;
	document.getElementById('divNavigator').innerHTML = strNavigator;
	document.getElementById('divContact').innerHTML = strContactUs;
	document.getElementById('pLinks').innerHTML = strServices;
	document.getElementById('divBottomLinks').innerHTML = strBottomLinks;
}
