/*


//jquery stuff
$(document).ready(function() {
	
		
		//$("#pollBtnRR").toggle(
//		  function () {
//			$("#FpollOuter").show("slow");
//		  },
//		  function () {
//			$("#FpollOuter").hide("slow");
//		  }
//		);	
		
		$("#pollBtnRR").click(function () {	
										
			$("#FpollOuter").toggle("slow");
			
		});
		
		
		$("#closeRRFP").click(function () {		
	
			$("#FpollOuter").hide("slow");
	
		});
		
		
 //end jquery block  
 });



*/