﻿function buttonbardata0()
{


    /*  Orientation and Item Widths */

	this.is_horizontal = true
	 this.item_width = 20

    /*Container Settings */

	this.container_border_width = "1px"
	this.container_border_style = "solid"
	this.container_styles = "background-color:#ab9d5c; border-color:#ab9d5d;  border-left-width:0px; border-right-width:0px; border-bottom-width:0px; border-top-width:0px;"

    /* Item Settings */


	this.item_padding = "5px,5px,5px,10px"




this.item_styles =            "text-align:center;				\
                                       text-decoration:none;			\
                                       font-weight:normal;			\
                                       font-family:Verdana;			\
                                       font-size:11px;				\
                                       border-color:#D2D2D2;			\
                                       background-color:#575757;		\
                                       color:#ffffff;				\
									   border-style:solid;			\
                                       border-width:1px;			\
                                       border-top-width:1px;	\
									   border-left-width:0px;	\
									   border-right-width:0px;	"





this.item_hover_styles =      "text-align:center;				\
                                       text-decoration:none;			\
                                       font-weight:normal;			\
                                       font-family:Arial;			\
                                       font-size:11px;				\
                                       background-color:#FFFFFF;		\
                                       color:#554e2e;				\
                                       border-style:solid;			\
                                       border-width:1px;			"
                                       		
	

}




var slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 20;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images/pic/image7.jpg'
Pic[1] = 'images/pic/image3.jpg'
Pic[2] = 'images/pic/image5.jpg'
Pic[3] = 'images/pic/image4.jpg'
Pic[4] = 'images/pic/image2.jpg'


// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}

