$(document).ready(function(){
	$('div.business').each(function(){
	var display = $('dd.website', this).text().replace('http://', '');
	if(display.length > 25)
		display = display.substring(0,25) + '...';
	
		$('dd.website', this).html('<a href="' + $('.website', this).text() + '" target="_blank">' + display + '</a>');
		//$('dd.email', this).html('<a href="mailto:' + $('dd.email', this).text() + '">Send an email</a><span>' + $('.email', this).text() + '</span>');
	});

	$('#printButton')
	.show()
	.click(function(){
		window.print();
	});

});	