// JavaScript Document

// Global variables
var contactNumber = 1;
var productNumber = 1;

function changeContact() 
{  
 if (contactNumber == 1) 
 {
	 var imagenContacto = document.getElementById('imagenContacto');
	 imagenContacto.src='images/sergio.jpg';
	 document.getElementById('nombreContacto').innerHTML = "Sergio Fernandez";
	 document.getElementById('tituloContacto').innerHTML = "Technical <br /> Manager";
	 contactNumber = 2;
 }
 else
 {
	 var imagenContacto = document.getElementById('imagenContacto');
	 imagenContacto.src='images/cesar.jpg';
	 document.getElementById('nombreContacto').innerHTML = "Cesar Carralero";
	 document.getElementById('tituloContacto').innerHTML = "Business <br /> Manager <br /> International";
	 contactNumber = 1;
 }
}


function changeActivity() 
{  
 if (productNumber == 1) 
 {
	 document.getElementById('A1').innerHTML = "Banking";
	 document.getElementById('A2').innerHTML = "QUALITY OBJECTS has developed banking technology systems for the main Spanish banks for their adjustment to the European and US banking systems, as well as for the migration, integration and merge of the different applications among banks from different countries. Among its proprietary products it is worth mentioning the algorithmic platform for trading (for e-Banking), online brokers and professional contractors boards. Other competences in banking include negotiation platforms for stocks and derivatives, migration and integration of various applications, risk management, scoring, customer management, phone debt collection, payment systems and so forth.";
	 document.getElementById('B1').innerHTML = "Utilities";
	 document.getElementById('B2').innerHTML = "QUALITY OBJECTS has developed applications and systems for the different phases in the energy cycle (gas & electricity): production, transport and distribution. As well as other services such as drinking water supply and rubbish collection. Its most remarkable jobs are applications for electronic trading, applications related to energy management (customer management, consumption, billing...), wireless systems for the location of tow trucks, vehicles and load optimization, applications for the building sector in order to save electricity in residential and industrial consumption based on wireless micro sensors, electronic systems and communications, security/safety for building work management, safety in the workplace, access control, people tracking, equipment control, etc.";
	 document.getElementById('C1').innerHTML = "Pharmaceutical and Healthcare";
	 document.getElementById('C2').innerHTML = "QUALITY OBJECTS has solutions that relate to the intelligent management of vast patient databases in hospitals, therefore it is possible to achieve optimization when it comes to the effectiveness of medication and drug costs. Other experiences in Pharmacology and Healthcare cover prevention against fraud in insurance companies using data mining and drug expenditure control for the Civil Service using DM.";
	 document.getElementById('D1').innerHTML = "Services and Others";
	 document.getElementById('D2').innerHTML = "Specific products for the creation of advanced services for the tourism industry, building industry oriented systems, irrigation optimization systems in agriculture.";
	 productNumber = 2;
 }
 else
 {
	 document.getElementById('A1').innerHTML = "Aerospace and Defence";
	 document.getElementById('A2').innerHTML = "QUALITY OBJECTS experience in this sector stems from system development, meeting the strict requirements that must be fulfilled by the high technology employed in applications and in software/hardware components. Some of its most remarkable jobs in this field are avionics systems, security systems, information managements systems for satellites, as well as presence control and access control systems.";
	 document.getElementById('B1').innerHTML = "Telecomunications";
	 document.getElementById('B2').innerHTML = "QUALITY OBJECTS has a considerable team of experts that master business and processes in the telecommunications field and taht many customers from this area endorse. Some of its most sifnificant jobs in this field are IMS network management applications, billing, royalty systems, customer management, partners and CRM, infrastructure management, complex mobile solutions based on GPRS, SMS, MMS, Bluetooth and so forth, applications for mobile devices (Midlets, Symbian, etc.).";
	 document.getElementById('C1').innerHTML = "Technology, software and internet";
	 document.getElementById('C2').innerHTML = "QUALITY OBJECTS stands out for its high capability in technology, which helps the company gain the trust of large multinational software manufactures for the development of their business products. Since the early days, this company has been a pioneer in the development of Web projects with state-of-the-art technology and, nowadays, it is still a leader in technology and a reference in Web 2.0 development.";
	 document.getElementById('D1').innerHTML = "civil service and others";
	 document.getElementById('D2').innerHTML = "QUALITY OBJECTS has experience in the development of the so-called digital cities, management systems for electronic documents, solutions for the provision of mobile services to citizens, management of interactive portals for the Civil Services, management of information campaigns, solutions to prevent fraud in vehicle imports, etc. ";
	 productNumber = 1;
 }
}
