jQuery(document).ready(function() {
	startBlockTextFitting();
});

/**
 * Attempts to fit the block text onto one line
 */
function startBlockTextFitting() {
	var currentBlock = jQuery('#block .current-block'),
	    blockText = currentBlock.text();
	
	currentBlock
		.prepend('<span>' + blockText + '</span>')
		.css('white-space', 'nowrap');
}
