$(function(){
	i = 0;
	setInterval(function(){
		if(i>650){i = 0}
	    $('#icons_pane').css({'margin-left':-1*i+'px'});
		i++;
	},30)
	
});
