// meet us number nav
	if (document.images) {
		one = new Image
		oneOver = new Image
		two = new Image
		twoOver = new Image
		three = new Image
		threeOver = new Image
		four = new Image
		fourOver = new Image
		five = new Image
		fiveOver = new Image
		six = new Image
		sixOver = new Image
		seven = new Image
		sevenOver = new Image


		one.src = "images/numbernav_1_on.jpg"
		oneOver.src = "images/numbernav_1_off.jpg"
		two.src = "images/numbernav_2_on.jpg"
		twoOver.src = "images/numbernav_2_off.jpg"
		three.src = "images/numbernav_3_on.jpg"
		threeOver.src = "images/numbernav_3_off.jpg"
		four.src = "images/numbernav_4_on.jpg"
		fourOver.src = "images/numbernav_4_off.jpg"
		five.src = "images/numbernav_5_on.jpg"
		fiveOver.src = "images/numbernav_5_off.jpg"
		six.src = "images/numbernav_6_on.jpg"
		sixOver.src = "images/numbernav_6_off.jpg"
		seven.src = "images/numbernav_7_on.jpg"
		sevenOver.src = "images/numbernav_7_off.jpg"

	}
	else {
		one = ""
		oneOver = ""
		two = ""
		twoOver = ""
		three = ""
		threeOver = ""
		one = ""
		oneOver = ""
		two = ""
		twoOver = ""
		three = ""
		threeOver = ""
		document.example = ""
	}
// Meet Us show/hide 
theimage = new Array();


// The dimensions of ALL the images should be the same or some of them may look stretched or reduced in Netscape 4.
// Format: theimage[...]=[image URL, link URL, name/description]
theimage[0]=["images/MeetUs_slide1.jpg", "", "We’ve always been sisters and best friends who do everything together – and now we’re in business together! When we were kids, we designed and sold earrings, painted clothes and shoes to boutiques to earn spending money. Even now as adults, we often bump into people who purchased our designs so many years ago, but still have and love them."];
theimage[1]=["images/MeetUs_slide2.jpg", "", "Six years ago, we officially opened our jewelry business, beginning with beaded designs. It wasn’t long before it blossomed into a versatile company. "];
theimage[2]=["images/MeetUs_slide3.jpg", "", "Our designs range from individual customers to entire wedding parties! We have designed several pieces we donated to charity events, and have been featured in many of the hottest local boutiques and salons in the Tampa Bay area."];
theimage[3]=["images/MeetUs_slide4.jpg", "", "Now we are silver smithing, and creating our very own silver line. It’s our new passion and we fulfill it in our very own studio in Tampa, Florida. This line consists of more than just jewelry, too. We have ventured into other silver pieces, such as money clips, hairpins, sweater pins, key chains, card boxes and more. Each day brings new ideas!"];
theimage[4]=["images/MeetUs_slide5.jpg", "", "Along with silver we have expanded into Glass using various techniques in Lamp Working with beautiful Venetian glass from Italy. We love to mix the two media's incorporating the glass & silver together."];
theimage[5]=["images/MeetUs_slide6.jpg", "", "Painting has also been a huge part of our lives. We have hung in several shows from Miami to Tampa, sold several custom painted canvases, furniture, cards & murals. "];
theimage[6]=["images/MeetUs_slide7.jpg", "", "Our favorite part of designing is having other people enjoying our creations. We hope you enjoy our site and our pieces as much as we do.<br ><br>Lisa & Stephanie "];

///// Plugin variables

playspeed=0;// The playspeed determines the delay for the "Play" button in ms
linksperline=2; // For the text links
//#####
//key that holds where in the array currently are
i=0;


//###########################################
window.onload=function(){

	//preload images into browser
	preloadSlide();

	//set the first slide
	SetSlide(0);

}

//###########################################
function SetSlide(num) {
	//too big
	i=num%theimage.length;
	//too small
	if(i<0)i=theimage.length-1;

	//switch the image
	document.images.imgslide.src=theimage[i][0];

	//if they want name of current slide
	document.getElementById('slidebox').innerHTML=theimage[i][2];

	//if they want current slide number and total
	//document.getElementById('slidecount').innerHTML= "Image "+(i+1)+" of "+theimage.length;

}


//###########################################
function PlaySlide() {
	if (!window.playing) {
		PlayingSlide(i+1);
		if(document.slideshow.play){
			document.slideshow.play.value="   Stop   ";
		}
	}
	else {
		playing=clearTimeout(playing);
		if(document.slideshow.play){
			document.slideshow.play.value="   Play   ";
		}
	}
	// if you have to change the image for the "playing" slide
	if(document.images.imgPlay){
		setTimeout('document.images.imgPlay.src="'+imgStop+'"',1);
		imgStop=document.images.imgPlay.src
	}
}


//###########################################
function PlayingSlide(num) {
	playing=setTimeout('PlayingSlide(i+1);SetSlide(i+1);', playspeed);
}


//###########################################
function preloadSlide() {
	for(k=0;k<theimage.length;k++) {
		theimage[k][0]=new Image().src=theimage[k][0];
	}
}