﻿        function swapOver(control, brandType) {
        //alert(control.src);
        //alert('images/Nav' + brandType 'On.gif');
			control.src='images/Nav' + brandType + 'On.gif';
			document.getElementById('imgSubNav').src = 'images/NavSub' + brandType + '.gif';
			return true;
		}
		 function swapOut(control, brandType) {
			control.src='images/Nav' + brandType + 'Off.gif';
			document.getElementById('imgSubNav').src = 'images/NavSubNone.gif';
			return true;
		}