*** empty log message ***
diff --git a/functions.js b/functions.js
index e275bee..14c385e 100644
--- a/functions.js
+++ b/functions.js
@@ -149,15 +149,6 @@
   		}
   	}
 }
-  
-function t(i, j) {
-	var e = document.getElementById(i);
- 	var f = document.getElementById(j);
- 	var t = e.className;
- 	if (t.match('invisible')) { t = t.replace(/invisible/gi, 'visible'); }
- 	else { t = t.replace(/visible/gi, 'invisible'); }
- 	e.className = t;
-	f.className = t;
-}
+
   
 			
\ No newline at end of file
diff --git a/scripts/functions.js b/scripts/functions.js
index 7a88c68..1debd2d 100644
--- a/scripts/functions.js
+++ b/scripts/functions.js
@@ -40,4 +40,15 @@
     	response = ajaxObject.responseText;
 		v.innerHTML = response;    	
     }
+}
+
+  
+function t(i, j) {
+	var e = document.getElementById(i);
+ 	var f = document.getElementById(j);
+ 	var t = e.className;
+ 	if (t.match('invisible')) { t = t.replace(/invisible/gi, 'visible'); }
+ 	else { t = t.replace(/visible/gi, 'invisible'); }
+ 	e.className = t;
+	f.className = t;
 }
\ No newline at end of file