$(document).ready(function() {
	$('body').bind({
		'keydown':function (e) {
			if (e.which == 70 && e.ctrlKey) {
				$(this).html($(this).html().replace(/ /g, ' LEE! '))
			}
		}
	})
})

