$(function() {
	var bgMax = 730;// (px)
	var rate = bgMax / Number( $( '#top1 .count' ).attr( 'title' ) );
	$( '.count' ).each( function() {
		var bgWidth = bgMax - Math.ceil( Number( $( this ).attr( 'title' ) ) * rate );
		$( this ).css( 'background-position', -bgWidth + 'px' );
	});
});

