function init() {
	showslide(0);
}

function showslide(index){
	if (!document.images || !document.images.slide || typeof(slides) == "undefined" || slides.length == 0)
		return;
	if (index >= slides.length)
		index = 0;
	document.images.slide.src = "flash_images/" + slides[index];
	setTimeout("showslide(" + (index + 1) + ")", slidedelay);
}

function searchitem() {
	if (document.itemsearch.keywords.value.match(/\w+/)) {
		document.itemsearch.dept.value = "";
		document.itemsearch.cat.value = "";
		document.itemsearch.submit();
	}
	return;
}

function pickitem() {
	document.location = 'http://www.thewideshoes.com/BuyItem.php?style=' + document.pickform.ShoeStyle.value
	+ '&color=' + document.pickform.ShoeColor.value + '&size=' + document.pickform.ShoeSize.value
	+ '&width=' + document.pickform.ShoeWidth.value;
}
