//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.westernsecurity.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.westernsecurity.com.au/about_us/index.html">about us</a>';
var productshref = '<a href="http://www.westernsecurity.com.au/products/index.html">products</a>';
var serviceshref = '<a href="http://www.westernsecurity.com.au/services/index.html">services</a>';
var systemshref = '<a href="http://www.westernsecurity.com.au/systems/index.html">systems</a>';
var sitemaphref = '<a href="http://www.westernsecurity.com.au/sitemap/index.html">sitemap</a>';
var contacthref = '<a href="http://www.westernsecurity.com.au/contact_us/index.html">contact us</a>';
//secondary navigation bar links
//breadcrumb combinations
//home page links
var brhome = (hhomehref + gt + doctitle);
//main sections
var brabout = (hhomehref + gt + abouthref + gt + doctitle);
var brproducts = (hhomehref + gt + productshref + gt + doctitle);
var brservices = (hhomehref + gt + serviceshref + gt + doctitle);
var brsystems = (hhomehref + gt + systemshref + gt + doctitle); 
var brsitemap = (hhomehref + gt + sitemaphref + gt + doctitle);
var brcontact = (hhomehref + gt + contacthref + gt + doctitle);