|
K/7 Fanfiction Archive NC-17 Rated Fanfic
CLICK HERE to continue to next set of fanfic from author's "U" to "Z"
CLICK HERE to continue to third set of fanfic from author's "K" to "O"
CLICK HERE to continue to second set of fanfic from author's "F" to "J"
CLICK HERE to continue to first set of fanfic from author's "A" to "E"
language=JavaScript>
//Typing Text (DHTML) v1 (Sunday, April 15th, 2001)
//Programmed by: Haitham M. Al-Beik
//Email: albeik99@netzero.net
//Visit http://javascriptkit.com for this script
var newsText = new Array();
newsText[0] = "A#>$@s@$g B#$( @u%a@e ^i%&...";
newsText[1] = "A#ce@s@#g Bo$g su&s%a@e li%k...";
newsText[2] = "Accessing Borg subspace link...";
newsText[3] = "Borg link established.";
newsText[4] = "Primitive text-based interface detected...";
newsText[5] = "Access granted to Tertiary Adjunct Unimatrix K-7-1...Home of the Resistance is Futile K/7 Mailing List, aka The RiFt";
newsText[6] = "Begin description...";
newsText[7] = "This region is populated with liberated Drones, aka Resisters or RiFters, who choose to join this part of the Collective to service their desired goal of perfection--The mutual assimilation of Ensign Harry Kim and Seven of Nine";
newsText[8] = "In the Collective Consciousness we--Share stories written by fellow RiFters, Discuss any latest developments with the K/7 fanfic universe, Explore alternative endings of Voyager episodes that contain K/7 moments, & Share news relating to the characters Seven of Nine and Ensign Kim, or the actors Jeri Ryan and Garrett Wang.";
newsText[9] = "Access to the RiFt website includes access to a K/7 Fanfiction archive, Information about joining the mailing list, Links to fellow RiFter sites, the RiF FAQ, and RiF contact information.";
newsText[10] = "Click on any of the links to the left and make your selection.";
newsText[11] = "Click on any of the links to the left and make your selection.";
newsText[12] = "Subspace disruption detected...";
newsText[13] = "Reinitiating Borg subspace link...";
var ttloop = 1; // Repeat forever? (1 = True; 0 = False)
var tspeed = 50; // Typing speed in milliseconds (larger number = slower)
var tdelay = 1000; // Time delay between newsTexts in milliseconds
// ------------- NO EDITING AFTER THIS LINE ------------- \\
var dwAText, cnews=0, eline=0, cchar=0, mxText;
function doNews() {
mxText = newsText.length - 1;
dwAText = newsText[cnews];
setTimeout("addChar()",1000)
}
function addNews() {
cnews += 1;
if (cnews <= mxText) {
dwAText = newsText[cnews];
if (dwAText.length != 0) {
document.news.news2.value = "";
eline = 0;
setTimeout("addChar()",tspeed)
}
}
}
function addChar() {
if (eline!=1) {
if (cchar != dwAText.length) {
nmttxt = ""; for (var k=0; k<=cchar;k++) nmttxt += dwAText.charAt(k);
document.news.news2.value = nmttxt;
cchar += 1;
if (cchar != dwAText.length) document.news.news2.value += "_";
} else {
cchar = 0;
eline = 1;
}
if (mxText==cnews && eline!=0 && ttloop!=0) {
cnews = 0; setTimeout("addNews()",tdelay);
} else setTimeout("addChar()",tspeed);
} else {
setTimeout("addNews()",tdelay)
}
}
doNews()
This site is best viewed with Internet Explorer 6 at 800x600 resolution. Banner created by Krynn17; website created by Richard Chu (aka AMB Ricardo).
|