var slides = [
              {   title:'Turn any device into your very own Personal Radar', 
            	  message:'Sweep around your current spot for things to eat, buy, do and enjoy!  <strong>Patented location-based GPS searching</strong> puts you in touch with all of your favorite things -- anywhere, any time!',
            	  img:'../images/promo/promo0.jpg',
            	  link:'http://mobile.earthcomber.com/',
            	  button:'Find Out More'
              },
              {   title:'Search is over', 
            	  message:"<strong>Earthcomber's patented technology</strong> makes mobile screens flow with personal delights. It doesn't require fingers and thumbs to search, keep searching, and search for all of each person's real-world, real-time preferences. This just revolutionized the business picture.",
            	  img:'../images/promo/promo1.jpg',
            	  link:'/content/search_tech.html',
            	  button:'Tell me more'
              }
              ];
var index = Math.floor(Math.random()*slides.length);
	

function onSlideUpdate(){
	$("ul.promo li").fadeOut("fast", function(){
		var info = slides[index];
		$(this).find('h1').html(info.title);
		$(this).find('p').html(info.message);
		$(this).css('background-image', 'url('+info.img+')');
		$(this).find('a').attr('href', info.link).html(info.button);
		$(this).fadeIn(2000);

		index++;
		if (index > slides.length-1) index = 0;
		
	});
	
	
}

$(document).ready(function() {
	onSlideUpdate();
	window.setInterval(onSlideUpdate, 15000);
});
