// JavaScript Document

window.onload = initAll;


var currImg = 0;



var captionText = new Array(
	"Help bring your year to life with a professionally designed and produced Annual Report. Kelmscott can be your one-stop production shop for your next important project.",
	"Some things stand the test of time - reading is certainly one. Kelmscott can lay out your book, produce, fulfill and create an online commerce site to help you sell it.",
	"Letting customers see your production line is still a solid marketing tool. Consider variable printing so that different customers see different products targeted to their needs.",
	"Want to make a lasting impression? Let Kelmscott help you with an \"eye-popping\" cover design and a classy book layout. This gem has a finger-sewn case binding.",
	"Market your products and services with a custom made Pocket Folder with sales inserts. Consider full color variable printing to best target your customers.",
	"Promote your product or services with attractive, glossy flyers and sell sheets. 100# gloss text with gloss coat.",
	"Promote your product or services with attractive, glossy flyers and sell sheets. 100# gloss text with gloss coat.",
	"Either commercial print or high-quality wide format, posters are an attractive and influential way to promote a product or event. Marquee posters, printed 4-color with gloss coat. Packed in poster tubes shipped nationally.",
	"Either commercial print or high-quality wide format, posters are an attractive and influential way to promote a product or event. Marquee posters, printed 4-color with gloss coat. Packed in poster tubes shipped nationally.",
	"From standard 9\" x 12\" with business card slits to customized folders with stitched brochures and step sheets, pocket folders are a great way to present a professional image.",
	"An inexpensive way to distribute offers and description of services through a concentrated area. Printed 6\"x 18\" on 10 point C2S with overall satin coat, die cut, packed and shipped to regional locations.",
	"An inexpensive way to distribute offers and description of services through a concentrated area. Printed 6\"x 18\" on 10 point C2S with overall satin coat, die cut, packed and shipped to regional locations.",
	"The staple of many direct marketing plans, Kelmscott can design, print, and mail your cards as static or personalized pieces. Card printed 6\" x 9\" on 100# matte cover, mailed first class presort.",
	"The staple of many direct marketing plans, Kelmscott can design, print, and mail your cards as static or personalized pieces. Card printed 6\" x 9\" on 100# matte cover, mailed first class presort.",
	"Your most important documents require both high-quality printing and meticulous finishing. Contact Kelmscott to discuss your next quality-critical print job. Twenty pages printed on 100# gloss cover and 100# gloss text, overall gloss coat, spot varnish, mailed in custom window envelope with letter and stock statement.",
	"Full color invitations and envelopes for any event.",
	"Look to Kelmscott for solutions to your most unique print challenges. This map was printed on 75# PolyArt synthetic stock - water proof, tear resistant, highly durable; map fold. Maps were \"real-life\" and able to withstand all the abuse gamers threw at them.",
	"Make a splash with your next product or service announcement. Consider eye-catching production: die-cutting, spot UV coating, embossing, all pulled together in a clear polybag.",
	"Direct mailing catalogs remain one of the most powerful ways to generate business and achieve responses. Project printed on 80# bright white opaque, FSC-certified, 30% post-consumer recycled, wind-generated energy stock. Print, stitch with return envelope, mail.",
	"Keep your internal and external stakeholders abreast of all the important news in your organization. From 1-color to 6-colors, small run to long run, Kelmscott can distribute your news to your customers, members, employees, or other audience. Printed on 80# Corniche Velvet text, 4 color plus satin coat, stitch and mail.",
	"Connect to your audience for news, business reply, registration, or fundraising with a creative membership magazine. Printed on 80# gloss text and 80# gloss cover, stitched with reply card, digitally produced insert. Business reply returned to Kelmscott for transmission to client.",
	"Single sheet, booklet or die cut with special folds, brochures remain one of the most effective ways to advertise your business and services. Kelmscott can design, print, and distribute your brochure, and make it the workhorse of your marketing efforts. Printed on 80# gloss cover, scored, folded.",
	"Single sheet, booklet or die cut with special folds, brochures remain one of the most effective ways to advertise your business and services. Kelmscott can design, print, and distribute your brochure, and make it the workhorse of your marketing efforts. Printed on 80# gloss cover, scored, folded.",
	"Kelmscott can get your program materials to your event on time and looking great. We can start from scratch to design and produce the event components, or work with files supplied from your design team to produce and deliver the final elements."
	
	
)
var captionTitle = new Array(
	"Annual Report",
	"Books",
	"Catalogs",
	"Coffee Table Book",
	"Sales Portfolio",						 
	"Flyers / Sell Sheets",
	"Flyers / Sell Sheets",
	"Posters",
	"Poster",
	"Pocket Folders",
	"Door Hangers",
	"Door Hangers",
	"Postcards",
	"Postcards",
	"Annual Reports",
	"Invitations",
	"Video Game Insert",
	"Announcement Portfolio",
	"Catalogs",
	"Newsletters",
	"Membership Magazine",
	"Brochures",
	"Brochures",
	"Onsite Program Literature"
)

//JY----------------------

function initAll(myIndex) {
	if (myIndex != null)
	window.location.href="work_commercial.php?pid=" + myIndex + "#slideshow";
	if (myIndex == "" || myIndex == null || myIndex < 0)
		myIndex = 0;
		
	document.getElementById("slideshow").src = "images/gallery1img/slideImg" + myIndex + ".jpg";
	document.getElementById("imgTitle").innerHTML = captionTitle[myIndex];
	document.getElementById("imgText").innerHTML = captionText[myIndex];
	document.getElementById("prevLink").onclick = processPrevious;
	document.getElementById("nextLink").onclick = processNext;
	if (myIndex != currImg)
	currImg = myIndex;
}


//------------------------





//function initAll() {
//	document.getElementById("imgTitle").innerHTML = captionTitle[0];
//	document.getElementById("imgText").innerHTML = captionText[0];
//	document.getElementById("prevLink").onclick = processPrevious;
//	document.getElementById("nextLink").onclick = processNext;
//}

		

function processPrevious() {
	newSlide(-1);
}

function processNext() {
	newSlide(1);
}

function newSlide(direction) {
	var imgCt = captionText.length;
	
	currImg = currImg + direction;
	if (currImg < 0) {
		currImg = imgCt-1;
	}
	if (currImg == imgCt) {
		currImg = 0;
	}
	document.getElementById("slideshow").src = "images/gallery1img/slideImg" + currImg + ".jpg";
	document.getElementById("imgText").innerHTML = captionText[currImg];
	document.getElementById("imgTitle").innerHTML = captionTitle[currImg];
}
