jQuery(document).ready(function() {

if(location.href.match(/snackjoy-vote/)) {
jQuery('.gfield_radio li label').each(function() {
    var val = jQuery(this).html();
    val = val.replace('%%', '<br/>');
    val = val.replace(/::([^:]+)::/ig, '<b>$1</b>');
    var url = val.replace(/.*(http.*)/, '$1');
    val = val.replace(/(.*)http.*/, '$1');
    val = val.replace(/\*([^\*]+)\*/, '<a target="_new" href="'+url+'">$1</a>');
    jQuery(this).html(val);
});
}

});

