
//================Image show in slide=========
var simage1=new Image()
simage1.src="us/images/comment1.jpg"
var simage2=new Image()
simage2.src="us/images/delhi_office.jpg"
var simage3=new Image()
simage3.src="us/images/comment2.jpg"
var simage4=new Image()
simage4.src="us/images/austin_office.jpg"
var simage5=new Image()
simage5.src="us/images/comment3.jpg"
var simage6=new Image()
simage6.src="us/images/jaipur_office.jpg"
var simage7=new Image()
simage7.src="us/images/comment4.jpg"
var simage8=new Image()
simage8.src="us/images/agra_office.jpg"

//----------slide show information-------------
var pause = false;

var staffstep=1
var staffwhichimage=1
function staffslideit(){
if(pause==true)	return;
if (!document.images)
return;
document.images.staff_slide.src=eval("simage"+staffstep+".src")
staffwhichimage=staffstep
if (staffstep<8)
staffstep++
else
staffstep=1
setTimeout("staffslideit()",20000)
}
staffslideit()
function staff(){
if (staffwhichimage==1)
window.location="/guest_comments.htm"
else if (staffwhichimage==2)
window.location="/guest_comments.htm"
else if (staffwhichimage==3)
window.location="/guest_comments.htm"
else if (staffwhichimage==4)
window.location="/guest_comments.htm"
else if (staffwhichimage==5)
window.location="/guest_comments.htm"
else if (staffwhichimage==6)
window.location="/guest_comments.htm"
else if (staffwhichimage==7)
window.location="/guest_comments.htm"
else if (staffwhichimage==8)
window.location="/guest_comments.htm"

}

