// JavaScript Document
//opens new window for zoo
function ShowZoo() {
//self.name = "cableOrg";
var windowprops = "statusbar=no;scrollbars=yes,width=600,height=400,left=0,top=0";
OpenWindow = window.open("http://cableorganizer.com/cable-zoo/zoo.html","zoo",windowprops);
}

//array of phrases
var message = new Array();
message[0] = "Place your pointer over any animal to learn more about it.  Click for a closer look."
message[1] = "Extra-long cables driving you bananas? Stop beating your chest… take charge with our gorilla cords clips!";  //gorilla
message[2] = "Do piles of messy cables have you seeing stripes? Get things straightened out with our zebra cord clips!";  //zebra
message[3] = "Has disorganization knocked you out of the saddle? Send cable clutter galloping into the sunset with horse cord clips from CableOrganizer.com!";  //horse
message[4] = "Are the messy cords running around your house making you jump and say \"eek!\"? Catch them with a few mouse cord clips from CableOrganizer.com!";  //mouse
message[5] = "Do out-of-control cables have you roaring in frustration? Show those messy cords who’s king of the jungle with lion cord clips from CableOrganizer.com.";  //lion
message[6] = "Have unruly cords left you feeling trampled? Keep those wild cables from charging with rhinoceros cord clips from CableOrganizer.com.";  //rhino
message[7] = "Messy cables definitely aren’t the cat’s pajamas, but these cord clips from Ani Design Studio are! Cuddle up to a set of 3 at CableOrganizer.com.";  //ani cat
message[8] = "Have messy cords and tangled cables chased the Zen-like calm from your desk? Restore organization and inner harmony with CableOrganizer.com’s panda cord clips.";  //panda
message[9] = "Wasting time monkeying around with tangled desk cords? Get organized with our animal cable clips... they’re more fun than a barrel of you-know-whats!";  //monkey
message[10] = "Have unruly cords become a whale of a problem? Try animal clips from CableOrganizer.com... they'll keep you from swimming through a sea of cable clutter!";  //whale
message[11] = "Swamped with tangled cables? Meet the alligator cord clips from CableOrganizer.com: they’ll help you take a bite out of clutter!";  //gator
message[12] = "Need someone to give you a hand in the power department? Our tentacled friend is here to lend five, with surge protection as well!";  //power squid
message[13] = "Neither princesses nor smooching are required to turn this green guy into something special! It’s no fairy tale: just open Cababo up, wind long cords around his middle, and they magically disappear! ";  //cababo frog
message[14] = "Feel like you’re swimming through oceans of tangled cords? Dive into cable management with our favorite fish-out-of-water!";  //cable fish
message[15] = "Don’t curl up in your shell because of messy cables! Take control with a sleek and easy- to-use Cable Turtle from CableOrganizer.com!";  //cable turtle

function ChangeTxt(TxtNum){
	//changes the text area box
	document.change.ani_info.value = message[TxtNum];
}

//array of urls
var animURL = new Array();
animURL[0] = "http://cableorganizer.com/animal-clips/"  //animal clips
animURL[1] = "http://cableorganizer.com/cable-turtle/";  //cable turle
animURL[2] = "http://cableorganizer.com/animal-cable-organizers/cababo-frog-design.htm";  //cababo frog
animURL[3] = "http://cableorganizer.com/cable-fish/"  //cable fish
animURL[4] = "http://cableorganizer.com/animal-cable-organizers/cat-cable-keeper.htm"  //ani cat
animURL[5] = "http://cableorganizer.com/power-squid/"  //power squid

function GoTo(z){
	//window.zoo.blur();
	//redirects window to new url
	window.open(animURL[z],'','');
}