﻿/************************************** Splendid *************************************
* Created By:		Steve Doggett
* Creation Date:	24th August 2009
* Edited ----------------------------------------------------------------------------
*      By:              On:  
* Description -----------------------------------------------------------------------
*      This file handles the build 'em up/knock 'em down voting within the guestlist
*      Uses the JQuery & autocomplete plugins.
*
* Functions -------------------------------------------------------------------------
*      celebVote()          // The voting functionality
*       
**************************************************************************************/

/************************************** Functions *************************************/
function celebVote(voteType, personID)
{
    $.post("/webservices/guestlist-vote.aspx", {
        personID: personID,
        voteType: voteType
    }, function()
    {
        window.location.reload(true);
    });
    
}