//these may be relied upon at any point in the script, and if they can't be the site is dead
//This file holds any global variables that the "user" can change. This differs from core.js because you shouldn't need to hack core.js, wheras this one you NEED to hack up.

var site="http://idiomsyndrome.keenspace.com/" //MAKE SURE TO CHANGE THIS LINE ON UPLOADING THIS FILE. http://idiomsyndrome.keenspace.com/ file:///C:/Documents%20and%20Settings/Owner/My%20Documents/Comic/Site/
var cDir="c/" //Comic directory, for the pics
var iDir="i/" //Images directory, for things like buttons, backgrounds and so on

/******************************************
* SCHEME VARIABLES
* Edit these to change the basic colour scheme 
* and images and stuff of the site
* These sparse lines should give you enough control to change the whole feel of the entire site
******************************************/
var bgcolor="0B0B77" //the background colour
var text="FFFFFF" //main text for around the content (navbar, note, title)
var text2="FFEB0B" //extra text, news, navbar title and such
var link="E5A917" //link colour
var vlink="FFFFFF" //visited link colour
var hover="FFEB0B" //hover colour

//These files need to be found in the directory specified as iDir.
imageFirst="first.jpg"
imagePrevious="previous.jpg"
imageNext="next.jpg"
imageLast="current.jpg"
imageBg="bg.jpg"
imageLogo="logo.jpg"

widthLogo=310 //needed to prevent the title box from eating as much space as it can
widthButtons=200 //note that you need to have all your buttons the same size. If you really need to deviate from this (it is the webcomic norm) you can hack buttons() in content.js
heightButtons=100
siteTitle="Idiom Syndrome" //put the title of your comic here
authors=new Array("some guys") //a convienent place to list off who makes it. Only used in a couple of spots but nice.

//This is what the pages are based on... probably will never be different that 0 or 1 but meh (what would negatives do...not much really, just make the 1st comic a negative and go from there).
var pageBase=1 //this is absolutely useless. It shouldn't be anything but 1 ever. And yet I still coded it in to the site... why myself, why?
