$(function(){



    $("input#vote").live('click', function(){
		

        dataString = $("form#pollvote").serialize();

        $.ajax({
        type: "POST",
        url: "poll.php",
				cache: false,
        data: dataString,
        success: function(data) {
								$("p#message-poll").fadeIn(1000);				
                $("p#message-poll").html(host + ip);			
								$("p#message-poll").fadeOut(3000);								
								
			
        }
        });
				

        return false;          

    });

		
    $("a#showresults").live('click', function(){

	
        $.ajax({
        type: "POST",
        url: "poll.php",
				cache: false,
        success: function(data) {
				
								$("div#poll").fadeIn(1000);					
                $("div#poll").html(data);			
			
        }
        });
				

        return false;          

    });		
		
		
});
