document.write('<style type=\'text/css\'>\n.peWidget table, .peWidget caption, .peWidget tbody, .peWidget tfoot, .peWidget thead, .peWidget tr, .peWidget th, .peWidget td {\n	margin: 0;\n	padding: 0;\n	border: 0;\n	outline: 0;\n	font-size: 100%;\n	vertical-align: baseline;\n	background: transparent;\n}\n\n.peWidget{\n  font-family: \'Lucida Grande\', \'Lucida Sans Unicode\', \'sans-serif\';\n	font-size: 1em;\n  padding: 0.25em;\n  margin: 0;\n  width: 280px;\n	text-align: center;\n}\n\n.peWidget .pePoll {\n	padding-bottom: 1em;\n}\n\n.peWidget div { \n  padding-bottom: 0.5em;\n}\n\n.peWidget a {\n}\n\n.peWidget img, .peWidget div {\n  padding: 0.1em;\n  margin: 0;\n}\n\n.peWidget .peTitle {\n	font-weight: bold;\n}\n\n.peWidget .peBody {\n}\n\n.peWidget .pePollTitle {\n	font-weight: bold;\n}\n\n.peWidget .peFooter {\n	font-size: 0.85em;\n	padding-bottom: 2em;\n}\n\n.peWidget .peHeader .peName {\n  font-size: 1.2em;\n  font-weight: bold;\n  padding: 1em 1em 0;\n  text-align: center;\n}\n.peWidget .peHeader .peNotice {\n  text-align: center;\n  padding-top: 1em;\n  font-size: 0.9em;\n}\n<\/style>\n<div class=\'peWidget\'>\n<div class=\'peDisabled peManageListSubscription\'>\n<div class=\'peHeader\'>\n<div class=\'peLogos\'>\n\n<img alt=\"Pfg012_tycpo_logo_lockup_250x67%20copy\" src=\"http://www.phillyfunguide.com/userfiles/file/PFG012_TYCPO_logo_lockup_250x67%20copy.jpg\" />\n<\/div>\n<div class=\'peTitle\'>THE PEOPLE HAVE SPOKEN!<\/div>\n<\/div>\n<div class=\'peBody\'>\n<span>Top ranked thoughts during Live Arts shows:<\/span>\n<div class=\'pePollsList\'>\n<div class=\'pePoll\'>\n<span class=\'pePollTitle\'>\nHow would you rate POSTCARDS FROM THE WOODS?:\n<\/span>\n<span class=\'pePollResult\'>\n\"Amazing\"\n<\/span>\n<br />\n<\/div>\n<div class=\'pePoll\'>\n<span class=\'pePollTitle\'>\nHow would you rate ABOVE UNDER INBETWEEN?:\n<\/span>\n<span class=\'pePollResult\'>\n\"Amazing\"\n<\/span>\n<br />\n<\/div>\n<div class=\'pePoll\'>\n<span class=\'pePollTitle\'>\nHow would you rate STORE?:\n<\/span>\n<span class=\'pePollResult\'>\n\"Amazing\"\n<\/span>\n<br />\n<\/div>\n<div class=\'pePoll\'>\n<span class=\'pePollTitle\'>\nHow would you rate KILL ME NOW?:\n<\/span>\n<span class=\'pePollResult\'>\n\"Amazing\"\n<\/span>\n<br />\n<\/div>\n<div class=\'pePoll\'>\n<span class=\'pePollTitle\'>\nHow would you rate URBAN SCUBA?:\n<\/span>\n<span class=\'pePollResult\'>\n\"Amazing\"\n<\/span>\n<br />\n<\/div>\n<div class=\'pePoll\'>\n<span class=\'pePollTitle\'>\nHow would you rate WELCOME TO YUBA CITY?:\n<\/span>\n<span class=\'pePollResult\'>\n\"Amazing\"\n<\/span>\n<br />\n<\/div>\n<div class=\'pePoll\'>\n<span class=\'pePollTitle\'>\nHow would you rate 13 MOST BEAUTIFUL...?:\n<\/span>\n<span class=\'pePollResult\'>\n\"Amazing\"\n<\/span>\n<br />\n<\/div>\n<\/div>\n<\/div>\n<div class=\'peFooter\'>\n<div class=\'FooterText\'>\nWould you like to vote? You can:\n<a href=\"http://www.phillyfunguide.com/page/turnyourcellphoneon\">Click here!<\/a>\n<\/div>\n<div class=\'peBranding\'><\/div>\n<\/div>\n<\/div>\n<\/div>\n');

(function(version, src, fun){
  var when = function(condition, fun, time){
    if(condition()){
      return fun();
    } else {
      setTimeout(function(){
        when(condition, fun, time);
      }, time);
    }
  };
  
  var documentHead = (function(){
    return document.getElementsByTagName("head")[0];
  })();
  
  var loadJquery = function(){
    if(!jQueryLoaded()){
      var script = document.createElement("script");
      script.setAttribute("type", "text/javascript");                
      script.setAttribute("src", src);
      documentHead.appendChild(script);
    }
  };

  var jQueryLoaded = function(){
    return (typeof(jQuery) === 'function' && jQuery.fn.jquery === version);
  };

  loadJquery();

  when(jQueryLoaded, function(){
    fun(jQuery.noConflict());
  }, 10);
  
})('1.3', 'http://www.polleverywhere.com/javascripts/jquery-1.3.min.js', function($){
  /*
   jQuery delayed observer - 0.8
   http://code.google.com/p/jquery-utils/

   (c) Maxime Haineault <haineault@gmail.com>
   http://haineault.com

   MIT License (http://www.opensource.org/licenses/mit-license.php)

  */
  
  (function($){
      $.extend($.fn, {
          delayedObserver: function(callback, delay, options){
              return this.each(function(){
                  var el = $(this);
                  var op = options || {};
                  el.data('oldval', el.val())
                      .data('delay', delay || 0.5)
                      .data('condition', op.condition || function() { return ($(this).data('oldval') == $(this).val()); })
                      .data('callback', callback)
                      [(op.event||'keyup')](function(){
                          if (el.data('condition').apply(el)) { return }
                          else {
                              if (el.data('timer')) { clearTimeout(el.data('timer')); }
                              el.data('timer', setTimeout(function(){
                                  el.data('callback').apply(el);
                              }, el.data('delay') * 1000));
                              el.data('oldval', el.val());
                          }
                      });
              });
          }
      });
  })(jQuery);
  
  // This is where you start implementing widget-specific stuff.
});