			$(function()
			{
				qm_create(0,false,0,500,false,false,false,false,false);
  
				if ($("#poll-results").length > 0 ) {
					animateResults();
				}

				$('#nav1').hover(
					function() { $('#whomhelp').addClass("down");  },
					function() { $('#whomhelp').removeClass("down"); }
				);
				$('#nav2').hover(
					function() { $('#topicsissues').addClass("down");  },
					function() { $('#topicsissues').removeClass("down"); }
				);
				$('#nav3').hover(
					function() { $('#oursolutions').addClass("down");  },
					function() { $('#oursolutions').removeClass("down"); }
				);
				$('#inthissection').hover(
					function() { $('#seccont', this).css('display', 'block'); },
					function() { $('#seccont', this).css('display', 'none'); }
				);

				if (pollid>0){
				if ($.cookie('vote_id'+pollid)) {
					$("#poll-container").empty();
					votedID = $.cookie('vote_id'+pollid);
					$.getJSON("/poll.html?vote=none",loadResults);
				}
				}

			});