$(function() {

  var timer = setInterval( transitionMainImg, 7000);
  var counter = 1;
  
  var bgImg = [];
  bgImg[0] = "url('../media/images/home_main_img-02.png')";
  bgImg[1] = "url('../media/images/home_main_img_textile_banks.png')";
  bgImg[2] = "url('../media/images/home_main_img_charity_shops.png')";    
  bgImg[3] = "url('../media/images/home_main_img_bogus_collectors.png')";    
  bgImg[4] = "url('../media/images/home_main_img_recycle_to_school.png')"; 
  bgImg[5] = "url('../media/images/home_main_img.png')";

  image0 = new Image();
  image0.src = bgImg[0];

  image1 = new Image();
  image1.src = bgImg[1];

  image2 = new Image();
  image2.src = bgImg[2];   
  
  image3 = new Image();
  image3.src = bgImg[3];        
  
  image4 = new Image();
  image4.src = bgImg[4];  
               
  image5 = new Image();
  image5.src = bgImg[5];              

  var heading = [];
  heading[0] = 'Our African Connection';
  heading[1] = 'Textile Banks';
  heading[2] = 'Charity Shops';
  heading[3] = 'Bogus Collectors';
  heading[4] = 'Recycle2School';
  heading[5] = 'First Book Consignment';
  
  var text = [];
  text[0] = 'Some time ago Choice was approached by a group of village elders in the Eastern Nigerian village Umuorkpara. Could Choice help with the building of a new school in the village?';
  text[1] = 'We can provide the assurance required by local authorities to continually build on their green credentials and hit the anticipated targets set by their governing bodies.';
  text[2] = 'Our dry waste collection initiative introduced in 2006 was a first in the sector and has helped many charities to achieve substantial savings in their waste disposal costs.';
  text[3] = 'There are many companies offering a door to door collection service for bags of clothes on behalf of charities. Do you know if these bags are going to a genuine charity?';
  text[4] = 'Recycle2school is a cost free programme that actively promotes recycling in schools and encourages children to become involved in waste reduction.';
  text[5] = 'Choice has launched a hugely ambitious project to send one million text and educational books to the Imo State in Eastern Nigeria.  The first consignment of books was given a huge send off in London...';

  var link = [];
  link[0] = 'african_connection.php';
  link[1] = 'services_banks.php';
  link[2] = 'services_shops.php';
  link[3] = 'information.php';
  link[4] = 'recycle_to_school.php';
  link[5] = 'http://www.prweb.com/releases/2012/2/prweb9182644.htm';

  function transitionMainImg() {
    
    $('#main_img').css('backgroundImage', bgImg[counter]);
    $('#main_img h2').html(heading[counter]);
    $('#main_img p').html(text[counter]);
    $('#main_img_more a').attr('href', link[counter]);
          
    Cufon.refresh();
      
    counter == 5? counter = 0 : counter++;

  }

});
