$(function()
{
var ticker = function()
{
setTimeout(function(){
$('#ticker li:first').animate( {marginTop: '-200px'}, 800, function()
{
	$(this).detach().appendTo('ul#ticker').removeAttr('style');	
});
ticker();
}, 10000);
};
ticker();
});

/*
$.ajax({
type: "GET",
url: "test.php",
data: "id=1",
success: function(response){
$("#output").html(response);
}
});

*/

