var skypeCount = 0;

$(document).ready(function() {
	window.setTimeout(killSkype, 500);
});

function killSkype() {
	var skypeFound = false;
	$('.skype_pnh_print_container').each(function() {
		skypeFound = true;
		var textIn = $(this).html();
		var textOut = '';
		for (i = 0; i <= textIn.length; i = i + 5) {
			textOut += textIn.substr(i, 5) + '&shy;';
		}
		$(this).html(textOut);
	});
	$('.skype_pnh_print_container').removeClass('skype_pnh_print_container');
	$('.skype_pnh_container').html('');
	skypeCount++;
	if (!skypeFound && skypeCount < 4) {
		window.setTimeout(killSkype, 1000);
	} 
}
