// Each line here adds a page to your website.
// it takes three parameters
//  web page, 

addPageToSite("environments", "images/intro/environments.jpg", "Environments");
addPageToSite("characters", "images/intro/characters.jpg", "Characters");
addPageToSite("vehicles", "images/intro/vehicles.jpg", "Vehicles");
addPageToSite("traditional", "images/intro/traditional.jpg", "Traditional Art");
addPageToSite("http://jboesch.blogspot.com/", "images/intro/blog.jpg", "Blog");


// Adds an image to your website
// takes four parameters (page, image name, title and description
// title and description can be blank (put in  "" ) if you don't want one
// pageName MUST match the pagename of the addPageToSite call above.
// the directory structure for images is:

// the full size images: images/(pagename)/fullsize/(imagename)     (pagename) and (imagename) are the imagename and pagename you select
// the thumbnail images: images/(pagename)/thumbnail/(imagename)
// the display images:   images/(pagename)/display/(imagename)

//	      pageName		image name				 title		   description		
addImage("characters", "fleshwarrior.jpg",  	"", "fleshwarrior");
addImage("characters", "beast.jpg",      	"", "beast");
addImage("characters", "assasin.jpg",       	"", "assasin");
addImage("characters", "discovery.jpg",     	"", "discovery");
addImage("characters", "subway.jpg",         	"", "subway");
addImage("characters", "curious.jpg",		"", "curious");
addImage("characters", "ogre.jpg",          	"", "ogre");
addImage("characters", "born.jpg",          	"", "born");

addImage("environments", "congregation.jpg",  	"", "congregation");
addImage("environments", "arrival.jpg",		"", "arrival");
addImage("environments", "biohazard.jpg",      	"", "biohazard");
addImage("environments", "lightningbug.jpg",     	"", "lightning bug");
addImage("environments", "naturaldeath.jpg",         	"", "natural death");
addImage("environments", "bodyhall.jpg",       	"", "bodyhall");
addImage("environments", "ridinghood.jpg",      	"", "ridinghood");
addImage("environments", "steamparis.jpg",     	"", "steamparis");
addImage("environments", "stranded.jpg",     	"", "stranded");


addImage("vehicles", "wolftroops.jpg",		"", "wolf troops");
addImage("vehicles", "pilot.jpg",  	"", "pilot");
addImage("vehicles", "crash.jpg",          	"", "crash");
addImage("vehicles", "ET.jpg",       	"", "ET");
addImage("vehicles", "flyby.jpg",     	"", "flyby");

addImage("traditional", "blackhole.jpg",      	"", "black hole");
addImage("traditional", "sapienfactory.jpg", 	"", "sapien factory");


