//event handler
function addEventToObject(obj,evt,func) {
	var oldhandler = obj[evt];
	obj[evt] = (typeof obj[evt] != 'function') ? func : function(ev){oldhandler(ev);func(ev);};
}
// protect email addresses from spambots
// ----------------------------------------------
function SpamShield(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}
function setfocus(objectid)
{
    if(document.getElementById(objectid))
    {
        document.getElementById(objectid).focus();
    }
}

// Preload UI images
image1 = new Image();
image1.src = "http://www.capconplc.com/images/nav/home_hover.gif";

image2 = new Image();
image2.src = "http://www.capconplc.com/images/nav/about_hover.gif";

image3 = new Image();
image3.src = "http://www.capconplc.com/images/nav/services_hover.gif";

image4 = new Image();
image4.src = "http://www.capconplc.com/images/nav/services_hover.gif";

image5 = new Image();
image5.src = "http://www.capconplc.com/images/nav/investors_hover.gif";

image6 = new Image();
image6.src = "http://www.capconplc.com/images/nav/contact_hover.gif";