function search_suggestions_selection(search_word, search_word_index) {

	// Inserts selected suggestion array index into hidden form input
	$('search_array_index').value = search_word_index;
	
	// Initiates search
	$('search_button').click();
	
	// Inserts clicked word into text box
	document.getElementById('search_word_val').value = search_word;

}
