(function(){

var messages = [
'<a href="news/schastlivyie-chasyi-v-restorane-tramplin1.aspx">Счастливые часы</a> в ресторане Трамплин',
'<a href="menu.aspx">Обновление бизнес-меню каждый день!</a>',
'<a href="afisha.aspx">Живая музыка, приятные вечера</a>',
'<a href="contact.aspx">+7-499-257-39-84,     +7-916-773-84-46</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 );


})();
