		function swapHome(nr){
			var DivSrc = document.getElementById('swapHome');
			var DivText = document.getElementById('textLink');
			switch(nr){
				case 0:
				   DivText.innerHTML = "We Innovate and apply science to the art of marketing. Blending performance metrics with creativity to build promotion platforms that generate results. &nbsp;<a href=\"/OurApproach/tabid/62/Default.aspx\" class=\"link2\" title=\"\">More..</a>";				
				   DivSrc.className = 'leftSwap'+nr;
				break;
				case 1:
				   DivText.innerHTML = "We create memorable and measurable connections between brands and consumers that move business forward.&nbsp;<a href=\"/OurExpertise/tabid/57/Default.aspx\" class=\"link2\" title=\"\">More..</a>";
				   DivSrc.className = 'leftSwap'+nr;
				break;
				case 2:
				   DivText.innerHTML = "Accountable Marketing is our specialty. Effectiveness is our mantra. Generating head-turning ROI for our clients is our passion.&nbsp;<a href=\"/AboutUs/tabid/59/Default.aspx\" class=\"link2\" title=\"\">More..</a>";
				   DivSrc.className = 'leftSwap'+nr;
				break;
					}
			}
		var ihra = 1;
		var maxIMG = '19';                // Set the max image numbers to run right
		var minIMG = '0';                // Set the min image numbers to run left
		function moveLeft(){
			var Div = document.getElementById('ihra');
			  if((ihra == minIMG) || (ihra > maxIMG)){
			  	var def = ihra;
			  } else {
			  	var def = ihra - 1;
			  }
			  Div.style.backgroundImage = 'url(images/partners/'+ def +'.jpg)';
			  Div.style.width = '290px'; 
			  Div.style.height = '100px'; 
			  Div.style.backgroundPosition = 'bottom';
			  ihra = def;
		}
		function moveRight(){
			var Div = document.getElementById('ihra');
			  if((ihra < minIMG) || (ihra == maxIMG)){
			  	var def = ihra;
			  } else {
			  	var def = ihra + 1;
			  }
			  Div.style.backgroundImage = 'url(images/partners/'+ def +'.jpg)';
			  Div.style.width = '290px'; 
			  Div.style.height = '100px';  
			  Div.style.backgroundPosition = 'bottom';
			  ihra = def;
		}
		function Static(){
			var Div = document.getElementById('ihra');
			  def = ihra;
			  Div.style.backgroundImage = 'url(images/partners/'+ def +'.jpg)';
			  Div.style.width = '290px'; 
			  Div.style.height = '100px';  
			  Div.style.backgroundPosition = 'bottom';
		}