Cufon.replace('h1, h2, h3, h4, h5, h6', { hover: true });

function blogthis(service) {
	var url;
	switch(service) {
		case 'pinger':
			url = 'http://www.pinger.pl/share?title=[title]&content=[href]';
			break;
		case 'facebook':
			url = 'http://www.facebook.com/share.php?u=[href]';
			break;
		case 'twitter':
			url = 'http://twitter.com/home?status=[href]';
			break;
		case 'wykop':
			url = 'http://www.wykop.pl/dodaj?url=[href]&title=[title]';
			break;
		case 'sledzik':
			url = 'http://nasza-klasa.pl/sledzik?shout=[href]';
			break;
		case 'kciuk':
			url = 'http://www.kciuk.pl/Dodaj-link/?[href]/?auto/?auto';
			break;
		default:
			url = "http://www.google.com";
	}
	if (url && (typeof url == "string")) {
		url = url.replace('[href]', encodeURIComponent(window.location.href));
		url = url.replace('[title]', encodeURIComponent(document.title));
		window.open(url, '_blank', 'location=yes,resizable=yes,scrollbars=yes,status=yes');
	}
}
