function highlight_query(query) {
	var search = query;
	var query_arr = search.split(" ");
	
	for(var i = 0; i < query_arr.length; i++) {
		var query_str = query_arr[i];
		
		if(query_str.length >= 3 && query_str != "and" && query_str != "the") {
			if(query_str.length <= 3) {
				$("h1, a, td, font, p, div, b, i, center").highlight(query_str, { wordsOnly: true });
			}
			else {
				$("h1, a, td, font, p, div, b, i, center").highlight(query_str);
			}
		}
	}
}
