﻿// JScript File

    var step=0;
    
    function slideQuote()
    {

        var quote = new Array('My blood group is UB+.', 
        'I have run out of coffee and need something to get my heart started in the morning.', 
        'I want to gift it to my unmarried brother to place it on his office table. P.S. I sit next to him.', 
        'I wish to charge entry ticket to my house.', 
        'I am STILL a bachelor and I am NOT dating anybody.', 
        'Coz my New Yr 07 resolution of shedding 10 kgs went exactly the opposite. Now I need visual inspiration.', 
        'I am a furious Kung-Fu fighter and have defeated many sock puppets. I smell manly. I rescue puppies and kittens from burning buildings. I am green for I conserve fuels and other stuff that&lsquo;s bad for the ozone whatever. I support the latest girlie political platforms that will ensure me a spot in a ladies panties. I do not watch TV because it make people stupid. The Airbus A-380 was designed after a drawing I made in 1st grade.', 
        'I NEED TO GIVE MY BOYFRIEND A REASON TO STOP STARRING AT ME!', 
        'I lived in andamans, grew up but the pictures will remind me that its the best in the world..........Kingfisher...take me home.', 
        'I plan to become a Yogi next year and these are my last days left to see all your beauties... unless you send me the calendar.. I might postpone my plan of becoming a Yogi.', 
        'Being in the fauj, am staying on a post, miles away from civilisation. The swimsuit special will definitely be a morale booster 24 X 7!!!', 
        'Have been diagnosed as being Kingfisher deficient. Recommended a strong dose of Kingfisher Calender 2008 by Doctor Lust.', 
        'Its a real inspiration to get thin & tone your body. Other than that if I get this calendar I will sell it to my husband for a pair of solitare earings which I have been eyeing for quite some time. I am sure I will get the earings as all men want to have the kingfisher calendar. If my husband doesnt buy it, there will be loads of my friends ready to give their right arm for it.', 
        'I need some major favors to land a cool job & the guy that can help me land it..is a big fan of the kingfisher 2008 calendar.....I can get him to do anything, if I just show him a glimpse of the calendar....if you send me one..I promise to give it to him..in Dec 08 :)', 
        'Cause its the only calender where I dont see the dates ;)', 
        'I love to admire beauties when I sip another beauty .... my Kingfisher Beer.', 
        'I am the invisible prince amidst those Udaipur palace shot, That Atul never caught, Those models sure look hot, A better poet I would be-with the Calendar in my plot!', 
        'To keep my eyes healthy.', 
        'Kingfisher Calendar is the best way to start the day and Kingfisher Beers are the best way to end the day!');

        var name = new Array('Vikram Dinesh', 
        'Jack Wyatt', 
        'Kirty Mehra', 
        'Chandrajit Ranavde', 
        'Rahul Sarkar', 
        'Vidushi', 
        'Michael Redden', 
        'Ripple Desai', 
        'Anirban Choudhury', 
        'Dharmendra Lingaiah', 
        'Lt Col Hemant Jha', 
        'Rajeev Kondapalli', 
        'Mrs Kshama Menon', 
        'Nithya', 
        'Feroze AH', 
        'Jenson Sebastian', 
        'Indranil Mukherjee', 
        'Rahat Jain', 
        'Arun');
        
        document.getElementById("lblQuote").innerHTML = quote[step];
        document.getElementById("lblName").innerHTML=name[step];

        if (step<18)
            step++;
        else
            step=0;
            
        setTimeout("slideQuote()",10000)
    }
