function changeTheCurrency(inCurrency) {
	changeDevise(inCurrency);
	var euroElement=document.getElementById("euroCurrency");
	var dollarElement=document.getElementById("dollarCurrency");
	var poundElement =document.getElementById("poundCurrency");	
	
	switch(inCurrency) {
		case "dollar":
			euroElement.style.fontSize="14px";
			euroElement.style.color="#797979";
			
			dollarElement.style.fontSize="16px";
			dollarElement.style.color="#fff";
			
			poundElement.style.fontSize="14px";
			poundElement.style.color="#797979";
		break;
		case "euro":				
			euroElement.style.fontSize="16px";
			euroElement.style.color="#fff";
			
			dollarElement.style.fontSize="14px";
			dollarElement.style.color="#797979";
			
			poundElement.style.fontSize="14px";
			poundElement.style.color="#797979";
		break;
		case "pound":				
			euroElement.style.fontSize="14px";
			euroElement.style.color="#797979";
			
			dollarElement.style.fontSize="14px";
			dollarElement.style.color="#797979";
			
			poundElement.style.fontSize="16px";
			poundElement.style.color="#fff";
		break;		
	}
};
