var writeIntro = document.getElementById('intro');
	  writeIntro.innerHTML = '<p>We work with businesses of all sizes which have the potential to grow and are important to the economy.</p><p>We focus on key sectors where we have world class technology, natural advantage or an existing critical mass. We also work with important growth industries to strengthen Scotland&#8217;s economic performance. <span id="quicklinks_heading">Choose your sector:</span> </p>'
	  
	  		var o;
if(document.getElementById && document.createElement && (o = document.getElementById('quicklinks'))) {
	var f = document.createElement('form');
	var l = document.createElement('select');
	l.id = 'selQuicklinks';
	var x = document.createElement('option');
	x.value = '';
	x.appendChild(document.createTextNode(firstItem));
	l.appendChild(x);
	for(var i=0; i<o.childNodes.length; i++) {
		if(o.childNodes[i].tagName != 'LI') continue;
		var link = o.childNodes[i].firstChild;
		while(link && link.tagName != 'A') {
			link = link.nextSibling;
		}
		if(!link) continue;
		var opt = document.createElement('option');
		opt.value = link.getAttribute('href');
		opt.appendChild(link.firstChild);
		l.appendChild(opt);
	}
	var input = document.createElement('input');
	input.type = 'button';
	input.value = 'Go';
	input.id = 'butGoQuickLinks';
	input.onclick = function() {
		var ql = document.getElementById('selQuicklinks');
		if(!ql) return;
		var cur = ql.options[ql.selectedIndex];
		if(cur && cur.value) document.location = cur.value;
	}
	f.appendChild(l);
	f.appendChild(document.createTextNode(' '));
	f.appendChild(input);
	o.parentNode.replaceChild(f, o);
	if(o = document.getElementById('quicklinks_heading')) {
		l = document.createElement('label');
		l.setAttribute('for', 'selQuicklinks');
		l.appendChild(o.firstChild);
		o.appendChild(l);
	}
}