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",
											 "banhm4.jpg",
											 "banhm5.jpg",
											 "banhm6.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()", 5000);
  }
}

var testimonials = new Array("Their focus on service and ultimate customer satisfaction is fantastic! L&D Printing is our companys single source of printing and print work production. <br/><br/> Service West, Inc.",
"There is no project for them too big or small, once they've committed, L&D Printing gets the job done on time.<br/><br/> Abbott Diabetes Care",
"L&D Printing had excellent customer service from my very first phone call. To top it off they pick up and deliver. What more could you ask for. They're just like family. Always ready to help. I wouldn't go anywhere else.<br/><br/>California Coating Lab",
"Service and professionalism are outstanding at L&D Printing. The staff almost feels like family and I love the door to door service. I would not trade L&D with anyone else. WE LOVE YOU GUYS!!!! Keep up the good work!<br/><br/>Telecare Corp.");