// JavaScript Document
var horrorBoxCounter = 0;

function horrorscopeSlideshow(){ 
	addToBoxCounter();
	if(horrorBoxCounter==1){
		document.getElementById('horrorscopetext').innerHTML = '<b>Aries</b> &mdash; Mutant powers are a metaphor for human individuality. Read any X-men comic again and reconsider your adolescence. [...]</p><p><b>Taurus</b> &mdash; Your uncle Alex will calculate in a letter that he is a thousand months old and that dying is like a candle going out. [...]';
	}
	else if(horrorBoxCounter==2){
		document.getElementById('horrorscopetext').innerHTML = '<b>Gemini</b> &mdash; Begin with physical anthropology. Learn how to measure the size of the brain of a human being who has been dead a long time and is all dried out. [...]</p><p><b>Cancer</b> &mdash; Beware -- traveling single file leads to lazy navigation. If you have a child, this is the year you will meet a stranger who will give you their precious child-rearing advice [...]';
	}
	else if(horrorBoxCounter==3){
		document.getElementById('horrorscopetext').innerHTML = '<b>Leo</b> &mdash; Go to the Dismal Swamp Canal in Virginia and indulge in your inner Huck Finn fantasy. They\'re okay with the N-word down there [...]</p><p><b>Virgo</b> &mdash; If you had your life to live over, learn how to perform urinalysis. There\'s job security in a police state. Complete your prison survival strategy [...]';
	}
	else if(horrorBoxCounter==4){
		document.getElementById('horrorscopetext').innerHTML = '<b>Libra</b> &mdash; Shotguns! No mistaking that flat hollow boom. Stand on a slab of concrete out in the mesquite desert, a scraggly little oasis north of Vegas [...]</p><p><b>Scorpio</b> &mdash; You will meet a parrot whose previous owner obviously watched the Price is Right [...]';
	}
	else if(horrorBoxCounter==5){
		document.getElementById('horrorscopetext').innerHTML = '<b>Sagittarius</b> &mdash; This is the year that you will convince your girlfriend, Miss America, to stop wasting money on weapons and to start spending money on you [...]</p><p><b>Capricorn</b> &mdash; You can be as serious as anyone -- with a few obvious exceptions. Your brother is heavily dependent upon the Navy for funds with which to investigate cloud physics [...]';
	}
	else if(horrorBoxCounter==6){
		document.getElementById('horrorscopetext').innerHTML = '<b>Aquarius</b> &mdash; Earth is such a pretty blue and pink and white pearl in the pictures that NASA sends out [...]</p><p><b>Pisces</b> &mdash; You can\'t teach people to write well. However, Amazon.com can erase or alter novels on the Kindle without notifying the owners [...]';
	}
}
function addToBoxCounter(){
	if (horrorBoxCounter<=5){horrorBoxCounter++;}
	else {horrorBoxCounter=1;}
}
