

function zeroSearch(text_box){
	text_box.style.color = '#000';
	if(text_box.value == 'Search'){
		text_box.value = '';
	}
}


