function search(){
	var input = document.getElementById('searchText');
	input.onfocus = function(){
		if ( input.value == 'Type keyword here (artist or title)' ){
			input.value = '';
		}
	}

	document.getElementById('searchSubmit').value = '';
}
