/* jquery wrapper function for Cufon */
jQuery.fn.cufon = function(opt) {
	return this.each(function(){
		Cufon(this, opt);
		
		// make sure these are visible...
		// we may have hidden them for IE only because of slow-loading cufon
		$(this).css('visibility', 'visible');
	});
};
