<!---------------------------------------------------------------------Current Issue Home Page Chunk---------------------------------------------------------------->
var p = 10;
var cnt = 0;
var s=0;
var t=0;
var h;
var arrlength = new Array();
arrlength[0] = 'images/february 15-1-dzire.jpg';
arrlength[1] = 'images/february 15-2-award.jpg';
arrlength[2] = 'images/february 15-3-suzuki.jpg';
arrlength[3] = 'images/february 15-4-bike.jpg';
arrlength[4] = 'images/february 15-5-products.jpg';

arrlength[5] = 'images/february 15-6-automotive-products.jpg';
arrlength[6] = 'images/february 15-7-motor.jpg';
arrlength[7] = 'images/february 15-8-yas-marina-circuit.jpg';
arrlength[8] = 'images/february 15-9-suv.jpg';
arrlength[9] = 'images/february 15-10-mercedes.jpg';



var arrtext = new Array();
arrtext[0] = "Ever since the Swift hatch was upgraded, a new Dzire was a given. But the company has done more than just a facelift with the car.";
arrtext[1] = "Since its introduction three years ago, The Golden Steering Wheel, has been our effort to recognise the best of the Indian automotive industry. This time we raise the bar even higher.";
arrtext[2] = "Auto Bild reveals why there were enormous crowds at the Maruti-Suzuki stall and what new cars are launched.";
arrtext[3] = "This year's Auto Expo for two-wheelers was a little drab given there weren't too many significant launches. Auto Bild finds out.";
arrtext[4] = "This pavilion at the 11th Auto Expo was a brilliant effort in educating buyers from distinguishing between the original and the fake products.";

arrtext[5] = "The 11th Auto Expo showcased a host of automotive products which will be launched this year and will definitely be worth buying.";
arrtext[6] = "Auto Bild India showcases components, systems and technology revealed at the Auto Expo 2012. The 3 comes to age.";
arrtext[7] = "Auto Bild goes to Yas Marina circuit in Abu Dhabi where the new i1 Super series finally takes off with its first driver testing session with a star studded line-up.";
arrtext[8] = "The Ecosport is a compact SUV that was unveiled, following an exclusive sneak peek the evening before the expo kicked off, to the world at the Auto Expo.";
arrtext[9] = "The A-class concept shows the way forward as far as a future Mercedes hatchback goes.";

var headtext = new Array();
headtext[0] = "All about new Dzires";
headtext[1] = "The best just got better still";
headtext[2] = "The great India car show";
headtext[3] = "For the biker boys";
headtext[4] = "Asli Nakli";

headtext[5] = "Products for 2012";
headtext[6] = "Motoring world's future";
headtext[7] = "Testing new waters";
headtext[8] = "Ford's next big thing";
headtext[9] = "Mercedes Benz's' compact car vision";



var numbertext = new Array();
numbertext[0] =  "1 of 10";
numbertext[1] =  "2 of 10";
numbertext[2] = "3 of 10";
numbertext[3] = "4 of 10";
numbertext[4] = "5 of 10";
numbertext[5] =  "6 of 10";
numbertext[6] =  "7 of 10";

numbertext[7] = "8 of 10";
numbertext[8] = "9 of 10";
numbertext[9] = "10 of 10";






var q = p*3;

function vshow(c)
{
if(c=='n')
  
 {
	 s=s%p;
 cnt=cnt+1;
 s=cnt;
 t=cnt*3;
s=s%p;
for(cnt=s; cnt<=s && cnt<p; cnt++)
 {
  document.getElementById("head1").innerHTML=headtext[cnt%p];
 document.getElementById("text1").innerHTML=arrtext[cnt%p];
  document.getElementById("numbertext").innerHTML=numbertext[cnt%p];
 document.i1.src=arrlength[cnt%p];
 t=t+3;
 t=t%q;
break;
}
 } 
  
 else 
{
s=s%p;
s=cnt-1;
if(s<0)
{
	if(s == -2)
		s=p-2;
	else
		s=p-1;
}
s=s%p;
 
   t=t-1;
   if(t<0)
   {t=q-1}
   t=t%q;
   
  for(cnt=s; cnt>=s && cnt<p; cnt--)
  {
     document.i1.src=arrlength[(cnt+p)%p];
   document.getElementById("head1").innerHTML=headtext[(cnt+p)%p];
 document.getElementById("text1").innerHTML=arrtext[(cnt+p)%p];
  document.getElementById("numbertext").innerHTML=numbertext[(cnt+p)%p];
  t=t-2;
  break;
 }
}
}

