img=new Array();

img[0]=new Image();
img[0].src='images/menu2_on.gif';




// -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- //


function changeSMenu(num)
{
	if (num)
	{
		changeSMenu(0);
		obj=document.getElementById('tMenu_'+num);
		if (obj) obj.style.backgroundColor='#FFFFFF';
	}
	else
	{
		for (i=1;i<=6;i++)
		{
			obj=document.getElementById('tMenu_'+i);
			if (obj) obj.style.backgroundColor='#1767B3';
		}
	}
}


// -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- //


function showHideBrands(obj)
{
	obj=obj.nextSibling.nextSibling;

	if (obj.style.display=='block') obj.style.display='none';
	else obj.style.display='block';
}


// -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- //


function rebuildBrandsList(city)
{
if (city==0) return;

brandsSelect=document.getElementById('brand');
brandsSelect.length=0;

newOption=document.createElement('OPTION');
(brandsSelect.options.add)?brandsSelect.options.add(newOption):brandsSelect.add(newOption,null);

for (i=1;i<cityBrands[city].length;i++)
{
	brand=cityBrands[city][i];

	newOption=document.createElement('OPTION');
	newOption.text=brands[brand];
	newOption.value=brand;

	(brandsSelect.options.add)?brandsSelect.options.add(newOption):brandsSelect.add(newOption,null);
}

document.getElementById('result').innerHTML='';
}


// -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- // -- //


function sendForm(sCentreNum)
{
	city=document.getElementById('city').value;
	brand=document.getElementById('brand').value;

	if (brand.selectedIndex==0 || city.selectedIndex==0) return;

	window.location.href=siteRoot+'servcentres/search/'+city+'/'+brand+'/';
}
