
var currentTab = 'alldeals';
function switchTab( tab )
{
	if ( tab == currentTab ) return false;
	
	document.getElementById('tab' + tab).className = 'tabactive';
	document.getElementById('tab' + currentTab).className = 'tabinactive';
	
	document.getElementById('search' + tab).className = 'searchactive';
	document.getElementById('search' + currentTab).className = 'searchinactive';

	document.getElementById('label' + tab).className = 'labelactive';
	document.getElementById('label' + currentTab).className = 'labelinactive';
	
	document.forms['form' + tab].elements['q'].value = document.forms['form' + currentTab].elements['q'].value;

	currentTab = tab;

	return false;
}
