$(function() {
	//this line just replaces the entire document with the Thawte image:
	//$('div#thawte > script').attr('src', 'https://siteseal.thawte.com/cgi/server/thawte_seal_generator.exe');

	//replacement doc.write() for use on closed doc
	document.write = (function () {
		for (var i = 0; i < arguments.length; i++) {
			$('div#ThawteSSL').append(arguments[i]);
		}
	});

	//thawte's script calls doc.write() to do its work; will now append to the
	//appropriate div instead of replacing the document
	$('#ThawteSSL > script').attr('src', 'https://siteseal.thawte.com/cgi/server/thawte_seal_generator.exe');
});
