function slide(title,src,url,info){
	this.src = src
	this.info = info
	this.title = title
	this.url = url
}

var slideshowpic = new Array()
var slideinfo = new Array()

slideshowpic[0] = new slide('Butte Creek Country Club','images/bccc_s.jpg','www.buttecreekcountryclub.com','Nice, elegant layout with mouseovers on the home page. This web site was created entirely by hand in HTML using only notepad. Some features include:<li>Online photo gallery.<li>Monthly newsletter updated by the client.<li>Text links and menus for easy exploration and indexing by search engines.')
slideshowpic[1] = new slide('The Brew Guild','images/brewguild.jpg','www.brewguild.com','Quick loading site where you can buy beer related products. Powered by ColdFusion, this site is updated though a secure admin page. Some features include:<li>Email list manager.<li>E-commerce shopping cart with online credit card processing.<li>Site control from secure administation page.')
slideshowpic[2] = new slide('Smart TV & Sound Magazine','images/smarttvandsound.jpg','www.smarttvandsound.com','Company website, for Smart TV & Sound Magazine. Site is controlled by in-house databases and is updated daily. Some features include:<li>Secure online shopping.<li>Site updateable through local Microsoft Access databases.<li>DHTML menu system.')
slideshowpic[3] = new slide('Videomaker Magazine','images/videomaker.jpg','www.videomaker.com','Main website, for Videomaker Magazine. Site is backed by ColdFusion MX and content is updated though corporate databases and uploaded daily. Some features include: <li>Integrated banner tracking system.<li>Secure online shopping<li>ODBC integration in to subscription database.')
slideshowpic[4] = new slide('Sam and Tami\'s Wedding','images/samandtamiswedding.jpg','www.samandtamiswedding.com','This is my personal wedding website, written using HTML and PHP.   The goal was to create some easy to navigate and still look pleasing to the eye.  This site includes:<li>JavaScript slide show.<li>Photo album that creates thumbnails on the fly.<li>PHP templates for easy editing menus.')
slideshowpic[5] = new slide('Videomaker Workshops','images/videomakerworkshops.jpg','www.videomakerworkshops.com','ColdFusion website with MS Access database backend.  Database is updated daily and synced with the online version. Some features include:  <li>Random rotating images.<li>Easily updateable content.<li>Entirely database driven.')
slideshowpic[6] = new slide('Women\'s Health Specialists','images/womenshealthspecialists.jpg','www.womenshealthspecialists.org','The Women\'s Health Specialists Center provides well-woman reproductive health care, family planning, breast cancer screening, adoption services and much more. Some site features include: <li>SHTML templates. <li>Printer friendly pages.<li>DHTML menus.')
slideshowpic[7] = new slide('Tucker\'s Own','images/tuckersown.jpg','www.tuckersown.com','ColdFusion website dedicated to The Brew Guilds own line of beers.  Some features include: <li>Online secure admin site to update texts.<li>Custom made visitor tracking system.<li>Mouseover popup menus.')
slideshowpic[8] = new slide('Litewheels Magazine','images/litewheels.jpg','www.litewheels.com','Litewheels is a print magazine in the works. It will cover motorized alternative transportation products and trends toward more fuel-efficient, less polluting vehicles. Some features include: <li>ColdFusion templates.<li>DHTML menus.<li>MS Access database backend.')
slideshowpic[9] = new slide('Videomaker Expos','images/videomakerexpowest.jpg','www.videomakerexpo.com','Company website to promote the Videomaker Expos held each year.  A few of the features include: <li>ColdFusion templates.<li>Secure admin page to update pages.<li>Integration into the Videomaker store.')

jump1_over = newImage("images/bccc_s_mini_o.jpg");
jump2_over = newImage("images/brewguild_mini_o.jpg");
jump3_over = newImage("images/smarttvandsound_mini_o");
jump4_over = newImage("images/videomaker_mini_o.jpg");
jump5_over = newImage("images/samandtamiswedding_mini_o.jpg");
jump6_over = newImage("images/videomakerworkshops_mini_o.jpg");
jump7_over = newImage("images/womenshealthspecialists_m_o.jpg");
jump8_over = newImage("images/tuckersown_mini_o.jpg'");
jump9_over = newImage("images/litewheels_mini_o.jpg");
jump10_over = newImage("images/videomakerexpo_mini_o.jpg");

var t
var j = 0
var p = slideshowpic.length

var preLoadSlide = new Array()
for (i = 0; i < p; i++){
   preLoadSlide[i] = new Image();
   preLoadSlide[i].src = slideshowpic[i].src
}


function nextSlide(){

   j = j + 1
   if (j > (p-1)) j=0

   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(Duration=1)"
      document.images.SlideShow.filters.blendTrans.Apply()
   }
   document.images.SlideShow.src = preLoadSlide[j].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   if (document.getElementById){
   	document.getElementById("SlideShowtext").innerHTML = "<B>" + slideshowpic[j].title + "<\/b><P>" + slideshowpic[j].info+"<br><a href='http:\/\/" +slideshowpic[j].url+"' target='_blank'>"+slideshowpic[j].url+"<\/a>"
   }

}

function previosSlide(){
   j = j - 1
   if (j < 0) j=p-1

   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(Duration=1)"
      document.images.SlideShow.filters.blendTrans.Apply()
   }
   document.images.SlideShow.src = preLoadSlide[j].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   if (document.getElementById){
   	document.getElementById("SlideShowtext").innerHTML = "<B>" + slideshowpic[j].title + "<\/b><P>" + slideshowpic[j].info+"<br><a href='http:\/\/" +slideshowpic[j].url+"' target='_blank'>"+slideshowpic[j].url+"<\/a>"
   }
}

function jumpSlide(SlideNumber){
   j = SlideNumber

   if (document.all){
      document.images.SlideShow.style.filter="blendTrans(Duration=1)"
      document.images.SlideShow.filters.blendTrans.Apply()
   }
   document.images.SlideShow.src = preLoadSlide[j].src
   if (document.all){
      document.images.SlideShow.filters.blendTrans.Play()
   }
   if (document.getElementById){
   	document.getElementById("SlideShowtext").innerHTML = "<B>" + slideshowpic[j].title + "<\/b><P>" + slideshowpic[j].info+"<br><a href='http:\/\/" +slideshowpic[j].url+"' target='_blank'>"+slideshowpic[j].url+"<\/a>"
   }
}
