<!--
var browserOK=false;
var agent= navigator.userAgent;

if(agent.substring(0,7) == 'Mozilla' &&	3 <= agent.substring(8,9)) {
	browserOK= true;
}

if (browserOK) {
	if (document.images) {
	// OptimizationSolutions
	var OptimizationSolutions_off = new Image();
        OptimizationSolutions_off.src = "/Images/OptimizationSolutions2.gif";
        var OptimizationSolutions_on = new Image();
        OptimizationSolutions_on.src = "/Images/OptimizationSolutions1.gif";
	// FinancialApplications
	var FinancialApplications_off = new Image();
        FinancialApplications_off.src = "/Images/FinancialApplications2.gif";
        var FinancialApplications_on = new Image();
        FinancialApplications_on.src = "/Images/FinancialApplications1.gif";
	// InnovativeSoftware
	var InnovativeSoftware_off = new Image();
        InnovativeSoftware_off.src = "/Images/InnovativeSoftware2.gif";
        var InnovativeSoftware_on = new Image();
        InnovativeSoftware_on.src = "/Images/InnovativeSoftware1.gif";
	// IntellectualProperty
	var IntellectualProperty_off = new Image();
        IntellectualProperty_off.src = "/Images/IntellectualProperty2.gif";
        var IntellectualProperty_on = new Image();
        IntellectualProperty_on.src = "/Images/IntellectualProperty1.gif";
	// ContactUs
	var ContactUs_off = new Image();
        ContactUs_off.src = "/Images/ContactUs2.gif";
        var ContactUs_on = new Image();
        ContactUs_on.src = "/Images/ContactUs1.gif";
	}
}

function act(imgName) {
	if (browserOK) {
	       if (document.images)
                document[imgName].src = eval(imgName + '_on.src')
	}
}

function inact(imgName) {
	if (browserOK) {
        	if (document.images)
                document[imgName].src = eval(imgName + '_off.src')
	}
}

//lights the buttons
function light (s) {
	if ("INPUT"==event.srcElement.tagName)
	event.srcElement.className=s
}
-->