//script to write location of breadcrumb key file
document.write('<script language="JavaScript" src="key.js"></script>');

//breadcrumb variables
//all hyperlinks for variables must be absolute links

//home link
var hhomehref = '<a href="http://www.outercontrol.com.au/index.html">home</a>';

//chevron spacer to go between breadcrumb links
var gt = ' &gt; ';

//document title
var doctitle = document.title;

//global navigation bar hyperlinks
var abouthref = '<a href="http://www.outercontrol.com.au/about/index_about.html">about</a>';
var serviceshref = '<a href="http://www.outercontrol.com.au/services/index_services.html">services</a>';
var productshref = '<a href="http://www.outercontrol.com.au/products/index_products.html">products</a>';
var quoteshref = '<a href="http://www.outercontrol.com.au/quotes/index_quotes.html">quotes</a>';
var diagnosishref = '<a href="http://www.outercontrol.com.au/diagnosis/index_diagnosis.html">diagnosis</a>';
var tipshref = '<a href="http://www.outercontrol.com.au/tips/index_tips.html">tips</a>';
var contacthref = '<a href="http://www.outercontrol.com.au/contact/index_contact.html">contact</a>';

//breadcrumb combinations
//home page links
var brhome = (hhomehref + gt + doctitle);

//about us section
var brabout = (hhomehref + gt + abouthref + gt + doctitle);

//services section
var brservices = (hhomehref + gt + serviceshref + gt + doctitle);

//products section
var brproducts = (hhomehref + gt + productshref + gt + doctitle);

//quotes section
var brquotes = (hhomehref + gt + quoteshref + gt + doctitle);

//diagnosis section
var brdiagnosis = (hhomehref + gt + diagnosishref + gt + doctitle);

//tips section
var brtips = (hhomehref + gt + tipshref + gt + doctitle);

//contact section
var brcontact = (hhomehref + gt + contacthref + gt + doctitle);

