function get_px(str) {
	return str.substring(0,str.length - 2);
}
function ss_scroll() {
	pos = get_px($('#smoothscroller div').css('left')) - 1;
	if( pos <= -.25 * $('#smoothscroller div div').width() ) pos = 0;
	$('#smoothscroller div').css('left',pos+'px');
	ss_wait();
}
function ss_wait() {
	setTimeout('ss_scroll()',80);
}
$(document).ready(function() {
	html = $('#smoothscroller div div').html();
	$('#smoothscroller div div').html(html + html);
	ss_wait();
});


