(function(){

var messages = [
	'<a href="news/schastlivyie-chasyi-v-restorane-tramplin1.aspx">Счастливые часы</a> в ресторане Трамплин',
        'Срочно требуются официанты в ресторан, пишите на tramplinclub@gmail.com',
	'На сайте ресторана появился <a href="news/dobavlen-rss.aspx">RSS</a>'
];

var current = 0;

function animate(){
	$("#iam")
		.css({position:"relative"})
		.animate({left:"+=20px", opacity:0}, 300, function(){ $("#iam").html( messages[current] ) })
		.animate({left:"-=40px"}, 10)
		.animate({left:"+=20px", opacity:1}, 300)
		
	current = (current+1) % messages.length;
}

setTimeout( function(){
  animate();
  setInterval( animate, 7500 );
}, 2500 );


})();