diff --git a/html/archivedchangelog.html b/html/archivedchangelog.html
new file mode 100644
index 0000000000..6c80d65c64
--- /dev/null
+++ b/html/archivedchangelog.html
@@ -0,0 +1,3 @@
+
\ No newline at end of file
diff --git a/html/bug-minus.png b/html/bug-minus.png
new file mode 100644
index 0000000000..9934db406b
Binary files /dev/null and b/html/bug-minus.png differ
diff --git a/html/burn-exclamation.png b/html/burn-exclamation.png
new file mode 100644
index 0000000000..b2a4f670a8
Binary files /dev/null and b/html/burn-exclamation.png differ
diff --git a/html/changelog.html b/html/changelog.html
index e17e91684f..855e307fee 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -1,13 +1,26 @@
- /tg/ Station 13 Changelog
+ Baystation 12 Changelog
-
+
+
-
+
+
+
+
+
+
+ 30th April 2012
+ Erthilo updated:
+
+ - Switched to /tg/'s changelog format! Previous updates can be found here: http://baystation12.net/wiki/index.php/Changelog
+ - New green alt satchel for Botanists.
+ - Cyborgs can now view crew manifest and also state laws.
+ - New ATM sprites.
+ - Changes year to 2556 on medical/security records.
+
+
+
+
/tg/ station 13 Development Team
diff --git a/html/changelog.js b/html/changelog.js
new file mode 100644
index 0000000000..4146d0f094
--- /dev/null
+++ b/html/changelog.js
@@ -0,0 +1,87 @@
+/*
+function dropdowns() {
+ var divs = document.getElementsByTagName('div');
+ var headers = new Array();
+ var links = new Array();
+ for(var i=0;i=0) {
+ elem.className = elem.className.replace('visible','hidden');
+ this.className = this.className.replace('open','closed');
+ }
+ else {
+ elem.className = elem.className.replace('hidden','visible');
+ this.className = this.className.replace('closed','open');
+ }
+ return false;
+ }
+ })(links[i]);
+ }
+ }
+}
+*/
+/*
+function filterchanges(type){
+ var lists = document.getElementsByTagName('ul');
+ for(var i in lists){
+ if(lists[i].className && lists[i].className.search('changes')>=0) {
+ for(var j in lists[i].childNodes){
+ if(lists[i].childNodes[j].nodeType == 1){
+ if(!type){
+ lists[i].childNodes[j].style.display = 'block';
+ }
+ else if(lists[i].childNodes[j].className!=type) {
+ lists[i].childNodes[j].style.display = 'none';
+ }
+ else {
+ lists[i].childNodes[j].style.display = 'block';
+ }
+ }
+ }
+ }
+ }
+}
+*/
+function dropdowns() {
+ var drops = $('div.drop');
+ var indrops = $('div.indrop');
+ if(drops.length!=indrops.length){
+ alert("Some coder fucked up with dropdowns");
+ }
+ drops.each(function(index){
+ $(this).toggleClass('closed');
+ $(indrops[index]).hide();
+ $(this).click(function(){
+ $(this).toggleClass('closed');
+ $(this).toggleClass('open');
+ $(indrops[index]).toggle();
+ });
+ });
+}
+
+function filterchanges(type){
+ $('ul.changes li').each(function(){
+ if(!type || $(this).hasClass(type)){
+ $(this).show();
+ }
+ else {
+ $(this).hide();
+ }
+ });
+}
+
+$(document).ready(function(){
+ dropdowns();
+});
\ No newline at end of file
diff --git a/html/chevron-expand.png b/html/chevron-expand.png
new file mode 100644
index 0000000000..f770e33d8e
Binary files /dev/null and b/html/chevron-expand.png differ
diff --git a/html/chevron.png b/html/chevron.png
new file mode 100644
index 0000000000..b83135b690
Binary files /dev/null and b/html/chevron.png differ
diff --git a/html/cross-circle.png b/html/cross-circle.png
new file mode 100644
index 0000000000..e6f2d3228b
Binary files /dev/null and b/html/cross-circle.png differ
diff --git a/html/hard-hat-exclamation.png b/html/hard-hat-exclamation.png
new file mode 100644
index 0000000000..e22eb61b8f
Binary files /dev/null and b/html/hard-hat-exclamation.png differ
diff --git a/html/image-minus.png b/html/image-minus.png
new file mode 100644
index 0000000000..b2bac2c45a
Binary files /dev/null and b/html/image-minus.png differ
diff --git a/html/image-plus.png b/html/image-plus.png
new file mode 100644
index 0000000000..308c1ae0a2
Binary files /dev/null and b/html/image-plus.png differ
diff --git a/html/music-minus.png b/html/music-minus.png
new file mode 100644
index 0000000000..1b9478f43e
Binary files /dev/null and b/html/music-minus.png differ
diff --git a/html/music-plus.png b/html/music-plus.png
new file mode 100644
index 0000000000..ea7f36c6ba
Binary files /dev/null and b/html/music-plus.png differ
diff --git a/html/spell-check.png b/html/spell-check.png
new file mode 100644
index 0000000000..70b066d12a
Binary files /dev/null and b/html/spell-check.png differ
diff --git a/html/tick-circle.png b/html/tick-circle.png
new file mode 100644
index 0000000000..bcc4dc24b2
Binary files /dev/null and b/html/tick-circle.png differ
diff --git a/html/wrench-screwdriver.png b/html/wrench-screwdriver.png
new file mode 100644
index 0000000000..1a59de688d
Binary files /dev/null and b/html/wrench-screwdriver.png differ
|