// Cross-fade effect for homepage hero and affiliate partner logos

$(function(){
		   
	// Home page hero cross fade
      $('#topR').crossSlide({
      fade: 3
    }, [
      {
        src:  'images/home/home_hero01.jpg',
		href: 'who-we-are.html',
        from: 'top left',
        to:   'top left',
        time: 5
      }, {
        src:  'images/home/home_hero02.jpg',
		href: 'who-we-are.html',
        from: 'top left',
        to:   'top left',
        time: 5
      }, {
        src:  'images/home/home_hero03.jpg',
		href: 'who-we-are.html',
        from: 'top left',
        to:   'top left',
        time: 5
      }, {
        src:  'images/home/home_hero04.jpg',
		href: 'who-we-are.html',
        from: 'top left',
        to:   'top left',
        time: 5
      }, {
        src:  'images/home/home_hero05.jpg',
		href: 'who-we-are.html',
        from: 'top left',
        to:   'top left',
        time: 5
      }
    ]);
	  
	// Home page 'working with us' cross fade
	  $('#bot div.in div').crossSlide({
      fade: 1
    }, [
      {
        src:  'images/home/bot_home_affiliates01.gif',
		href: 'working-with-us.html',
        from: 'top left',
        to:   'top left',
        time: 5
      }, {
        src:  'images/home/bot_home_affiliates02.gif',
		href: 'working-with-us.html',
        from: 'top left',
        to:   'top left',
        time: 5
      }, {
        src:  'images/home/bot_home_affiliates03.gif',
		href: 'working-with-us.html',
        from: 'top left',
        to:   'top left',
        time: 5
      }, {
        src:  'images/home/bot_home_affiliates04.gif',
		href: 'working-with-us.html',
        from: 'top left',
        to:   'top left',
        time: 5
      }
    ]);
	  
  });