var link_nohandler= window.clientInformation ? null : window.undefined;

function link_down() {
    this.onfocus= this.blur;
}

function link_up() {
    this.onfocus= link_nohandler;
}

function link_bind() {
    for (var i= document.links.length; i-->0;) {
        document.links[i].onmousedown= link_down;
        document.links[i].onmouseup= link_up;
    }
}

function changeImgSrc(id,v) { var el = document.getElementById(id); if (el) el.setAttribute('src',v); }

function changeLinks(id, col) {
	
	var el = document.getElementById(id);
	
	document.getElementById('floorplans_nav').style.display='none';
	
	document.getElementById('front_aspect').style.color='#'+col;
	document.getElementById('rear_aspect').style.color='#'+col;
	document.getElementById('enquire').style.color='#'+col;
	document.getElementById('floorplans').style.color='#'+col;

	el.style.color='#333333';
}