// JavaScript Document
var skypecounter = 10; function removeSkypeTags() { skypecounter --; if (skypecounter > 0) { $('.skype_pnh_container').html(''); $('.skype_pnh_print_container').removeClass('skype_pnh_print_container');}
else clearInterval();}

$(document).ready(function() {
	$(document).pngFix(); 
	setTimeout(function() {
			setInterval('removeSkypeTags();',500);
	}, 500);
});
