New JS files

Slight change in autocomplete for bug fix
Separated the old script.js in function-oriented different files
diff --git a/js/search-bar.js b/js/search-bar.js
new file mode 100644
index 0000000..a52ee65
--- /dev/null
+++ b/js/search-bar.js
@@ -0,0 +1,15 @@
+function altSearchBar() {
+	if (document.querySelector(".md-google-search__metacontainer").style.display == "none") {
+		document.querySelector(".md-google-search__metacontainer").style.display = "block";
+		document.querySelector("#search i").innerText = "fullscreen";
+	} else {
+		document.querySelector(".md-google-search__metacontainer").style.display = "none";
+		document.querySelector(".autocomplete-container").style.display = "none";
+		document.querySelector("#search i").innerText = "search";
+	}
+}
+
+function initSearchBar() {
+	document.querySelector("#search").addEventListener("click", altSearchBar);
+	if (window.innerWidth > 700) altSearchBar();
+}