var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December")

window.onload = function() {
	var mozilla = false; var ie = false;
  if (document.all) { ie = true; }
  else if (document.getElementById) { mozilla = true; }

	//document.getElementById('date').innerHTML = dayarray[day]+", "+montharray[month]+" "+daym+", "+year;
  rotate_image();
  rotate_testimonial();
}

function openWindow(src,w,h) {
  w+=30; h+=20;
  window.open(src,"popup",'scrollbars,width='+w+',height='+h+'');
}

function openShow(album) {
  slideshow = window.open('./slide_show.php?album='+ album,'slideshow','resizable,scrollbars,titlebar');
}

function rotate_image() {
  if(document.getElementById("rotating_image")) {
		x = Math.round(Math.random() * images.length) - 1;
		if(x < 0) {
			x = 0;
		}
    document.getElementById("rotating_image").src = "./images/"+images[x];
    setTimeout("rotate_image()", 12000);
  }
}

function preloader() {
	imageObj = new Image();
	for(i=0;i<images.length;i++)
		imageObj.src="./images/"+images[i];
}

var images = new Array("banhm.jpg",
											 "banhm2.jpg",
											 "banhm3.jpg",
											 "banhm5.jpg",
											 "banhm4.jpg");

preloader();

function rotate_testimonial() {
  if(document.getElementById("testimonial")) {
		x = Math.round(Math.random() * testimonials.length) - 1;
		if(x < 0) {
			x = 0;
		}
    document.getElementById("testimonial").innerHTML = testimonials[x];
    setTimeout("rotate_testimonial()", 5900);
  }
}

var testimonials = new Array("Their focus on service and ultimate customer satisfaction is fantastic! GOZA GEAR is our companys single source of screen printing and embroidered work. <br/><br/> Lonzo Designs",
"VERY conscientious with all the projects this company has handled for us! Excellant work and done in a timely manor. Willing to go outside the box to be creative with items presented to them! Hight recommend this company!<br/><br/> Phylis Grisham",
"Thanks Steve and all for a nice visit to GozaGear. Thanks for welcoming me and the family so graciously and taking the time to explain your processes. We are very happy with the shirts and look forward to doing business with you again in the future!<br /><br />Eco Lunch Boxes",
"We want to extend a HUGE THANK YOU to you, your company, and your family! The process of screen printing our designs was fast and fun. You were very accommodating. The shirts turned out beautiful! We could not be more pleased. Once again, thank you!<br /><br />AlteredFlux",
"I just wanted to say thank you again for rushing the production on the bags last week. The bags were a big hit with the Recycling Board.<br/><br/>Public Works Department",
"Just wanted to tell you thanks for the embroidered bags! Our staff LOVED them. The logo on them looks so pro! YOU GUYS ARE AWESOME!<br/><br/>Cornerstone",
"Our Panama Red Block Party Event would not have been so successful without your amazing commitment to the Haven. Everyone LOVED the t-shirts for this year. They look amazing.  I can't say it enough Thank you!<br/><br/>Tri-Valley Haven");
