$ = function(id){
	try{	
		var obj = document.getElementById(id);
		if (obj != null){
			return obj;
		}
	}catch(e){}
	throw new Error("Object not found");
}

var dynImg = new Array();
  // Enter the names of the images below
  dynImg[0]='images/mission_and_vision.jpg';
  dynImg[1]='images/thought_leadership.jpg';
  dynImg[2]='images/client_testimonial.jpg';
  
var dynHead = new Array();
  dynHead[0]='Mission And Vision';
  dynHead[1]='Our Philosophy';
  dynHead[2]='Client Testimonial';

var dynSummary = new Array();
  dynSummary[0]='Our mission is to provide best possible testing and QA services to our customers using personalized approach.  <br/> Our vision is to accomplish our mission through close collaboration with our customers.';
  dynSummary[1]='We are in the business of testing which to us is more than an engineering discipline.  <br/> We at Resolvex possess strong testing expertise and business knowhow and apply this combination to provide our clients with customized testing solutions to meet their business goals.';
  dynSummary[2]='We are impressed with the testing services that Resolvex has provided to us. Their expertise in testing and QA space together with their ability to understand our business domain has helped us deploy a highly predictable & reliable application.';


var newBanner = 0;
var totalBan = dynImg.length;

function changeInfoDyn() {    
  if (newBanner == totalBan) {
    newBanner = 0;
  }
  var zone =   $('dyn_info_zone');
  var hd		=   $('info_heading');
  var sm		=   $('info_summary');
	  
  newImage = "url("+dynImg[newBanner]+")";
  zone.style.backgroundImage = newImage;
  hd.innerHTML = dynHead[newBanner];
  sm.innerHTML  = dynSummary[newBanner];
  setTimeout("changeInfoDyn()", 7 * 1000);
  newBanner++;
}




