d = document;

access = 1;

d.getElementById('logo').onmouseover = function() {
	d.getElementById('logo').style.cursor = 'pointer';
}

d.getElementById('logo').onmouseout = function() {
	d.getElementById('logo').style.cursor = 'default';
}

d.getElementById('logo').onclick = function() {
	window.location = 'http://www.betr.org.uk/';
}

// --------------------------------------------------------------------
/*
d.getElementById('accessibilitylink').onmouseover = function() {
	accessibility();
}

d.getElementById('accessibilitylink').onmouseout = function() {
	accessibility();
}

d.getElementById('accessibilitylink').onkeypress = function() {
	accessibility();
}

function accessibility() {
	if(access == 1) {
		d.getElementById('accessmenu').style.zIndex = 11;
		d.getElementById('accessmenu').style.height = 'auto';
		access = 0;
	} else {
		d.getElementById('accessmenu').style.zIndex = 9;
		d.getElementById('accessmenu').style.height = '1px';
		access = 1;
	}
}
*/
// --------------------------------------------------------------------


