function delaySubSearch(sc){
	
	switch(sc)
	{
		case "News": {
			document.getElementById('searchForm').action = "/s";
			document.getElementById('NewsId').color="#D20000";
			document.getElementById('ProductsId').color="#000000";
			document.getElementById('ManufacturesId').color="#000000";
			break;
		}
		case "Products": {
			document.getElementById('searchForm').action = "/p";
			document.getElementById('ProductsId').color="#D20000";
			document.getElementById('NewsId').color="#000000";
			document.getElementById('ManufacturesId').color="#000000";
			break;
		}
		case "Manufactures": {
			document.getElementById('searchForm').action = "/m";
			document.getElementById('ManufacturesId').color="#D20000";
			document.getElementById('ProductsId').color="#000000";
			document.getElementById('NewsId').color="#000000";
			break;
		}
	}
}
function radiobuttonSearch(sc){
	switch(sc)
	{
		case "BUS": {
			document.getElementById('slevalue').value="BUS";
			break;
		}
		case "PARTS": {
			document.getElementById('slevalue').value="PARTS";
			break;
		}
	}
}

