// JavaScript Document



/*
Photo Slider II- By Kevin Adams (kadams70@hotmail.com)
For this script and more
Visit http://www.javascriptkit.com
*/

var photos=new Array()
var text=new Array()
var which=0
var what=0

//Change the below variables to reference your own images. You may have as many images in the slider as you wish
photos[0]="rooms/19.jpg"
photos[1]="rooms/1.jpg"
photos[2]="rooms/18.jpg"
photos[3]="rooms/20.jpg"
photos[4]="rooms/21.jpg"
photos[5]="rooms/24.jpg"
photos[6]="rooms/2.jpg"
photos[7]="rooms/3.jpg"
photos[8]="rooms/4.jpg"
photos[9]="rooms/5.jpg"
photos[10]="rooms/6.jpg"
photos[11]="rooms/7.jpg"
photos[12]="rooms/8.jpg"
photos[13]="rooms/9.jpg"
photos[14]="rooms/10.jpg"
photos[15]="rooms/11.jpg"
photos[16]="rooms/12.jpg"
photos[17]="rooms/13.jpg"
photos[18]="rooms/14.jpg"
photos[19]="rooms/15.jpg"
photos[20]="rooms/16.jpg"
photos[21]="rooms/17.jpg"
photos[22]="rooms/25.jpg"
photos[23]="rooms/26.jpg"
photos[24]="rooms/27.jpg"
photos[25]="rooms/22.jpg"
photos[26]="rooms/23.jpg"
photos[27]="rooms/29.jpg"



//change coresponding description
text[0]="Metallic Wax technique glows on a ceiling. ( 1 of 28)"
text[1]="Aged Metal in copper is striking and warm. "
text[2]="Aged Metal can be varied to be as bold or subtle as you like."
text[3]="A common ceiling..."
text[4]="Transformed into a custom ceiling using a Stippled Wash."
text[5]="Wallcandy Painting can also stain existing or new wood."
text[6]="Florentine Cloth in gold adds warmth and drama."
text[7]="Florentine Cloth in green is a beautiful accent color."
text[8]="Frottage Leather can make a bold statement."
text[9]="Frottage Leather brightens a kitchen."
text[10]="Frottage blends contrasting colors together."
text[11]="Parchment can be soft and subtle."
text[12]="Softstone in antique gold finishes a contemporary space."
text[13]="Softstone in grey tones is very contemporary."
text[14]="Softstone with stripes adds drama."
text[15]="Softstone in sunflower adds warmth."
text[16]="Color makes white woodwork pop."
text[17]="Stripes add drama to a space."
text[18]="Suede in terracotta warms up a kitchen."
text[19]="Wax Gold adds richness and compliments many colors."
text[20]="Diamond Pattern in rich gold tones is an ellegant accent."
text[21]="Bright Suede enlivens a kitchen. "
text[22]="Stippled ceilings add depth of color and richness to a room. "
text[23]="A stippled ceiling combined with a freehand stencil design. "
text[24]="Stippled ceilings are a great way to unify the colors in a room."
text[25]="Make a large room warm with a Stone Overlay technique."
text[26]="Make a large room warm with a Stone Overlay technique."
text[27]="An ordinary column becomes an exquisite marble column.(28 of 28)"

window.onload=new Function("document.rotater.description.value=text[0]")

function backward(){
if (which>0){
window.status=''
which--
document.images.photoslider.src=photos[which];
what--
document.rotater.description.value=text[what];
}
}

function forward(){
if (which<photos.length-1){
which++
document.images.photoslider.src=photos[which]
what++
document.rotater.description.value=text[what];
}
else window.status='End of gallery'
}

function type()
	{
	alert("This textbox will only display default comments")
	}
