$(function () {
    $("#submit_poll").click(function () {
		var type	= $('input[name$="type"]').val();
        var ip 		= $('input[name$="ip"]').val();
        var qid 	= $('input[name$="qid"]').val();
        var aid 	= $('input[name="aid"]:checked').val();

        var dataString = 'query=poll&qid=' + qid + '&aid=' + aid + '&ip=' + ip + '&type='+ type;
        //alert (dataString);return false;
        $.ajax({
            type: "POST",
            url: "lib/ajax.php",
            data: dataString,
            success: function (html) {
				if (type == 'home') {
					$("#poll-container").html(html);
				} else {
					$("#poll-container-garage").html(html);
				}
            }
        });
        return false;
    });
});

