function hideShow(){
	var theInput = document.getElementById('search-input');
	var theInput2 = document.getElementById('partnumbersearch-input');
	var value = theInput.getAttribute('value');
	var value2 = theInput2.getAttribute('value');
	
	theInput.onfocus = clear;
	theInput.onblur = add;
	
	theInput2.onfocus = clear2;
	theInput2.onblur = add2;
	
	function clear(){
		theInput.setAttribute('value', '');
	}
	function add(){
		var live_value = theInput.getAttribute('value');
		if(live_value == '')
		{
			theInput.setAttribute('value', value);
		}
	}
	
	function clear2(){
		theInput2.setAttribute('value', '');
	}
	function add2(){
		var live_value2 = theInput.getAttribute('value');
		if(live_value2 == '')
		{
			theInput.setAttribute('value', value2);
		}
	}
}

window.onload = hideShow;