function SearchIn(id) {
	e1 = document.getElementById('searchDivGoogle');
	e2 = document.getElementById('searchDivCatalog');
	e3 = document.getElementById('searchGoogle');
	e4 = document.getElementById('searchCatalog');
	if (e1 && e2 && e3 && e4) {
	  if (id==1) {
			e1.className = "topinternet";
			e1.style.background = "url('/templates/goog/img/searchprep.gif') no-repeat";				
		  e2.className = "topinternettext";
		  e2.style.background = "none";
		  e3.style.display = 'block';
		  e4.style.display = 'none';
		} else {
			e1.className = "topinternettext";
			e1.style.background = "none";
		  e2.className = "topinternet";
		  e2.style.background = "url('/templates/goog/img/searchprep.gif') no-repeat";
		  e3.style.display = 'none';
		  e4.style.display = 'block';
		}
	}
}
