
// voting

function vote(element, id) {
	$('<div class="voteModal"><img src="/media/images/spinner.gif" alt="Please Wait" style="margin-top:29px;" /></div>').modal();
	$.get(
        '/contest/vote/'+id, 
        {}, 
        function (data) {
            $('#simplemodal-data').html('<p style="margin-top: 25px;">' + data.message + '</p>');
            if (data.state == 'success') {
   
                var context = $(element).parent().parent();
                var currentValue = parseInt($('.voteNumber', context).text());
                $('.voteNumber', context).text(currentValue + 1);
            }
        }, 
        'json'
    );
}

