/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function change_movie(aan)
{
    jQuery.ajax(
    {
        type: "POST",
        url: HTTP_PATH+"modules/paginas/ajax/change_movie.php",
        data: "movie="+aan,
        dataType: 'json',
        async: false,
        success: function(data)
        {
            if(data.status != 'gelukt')
            {            
                alert(data);
            }
            else
            {
                var animatie = document.getElementById('animatie');
                animatie.innerHTML = data.animatie;
            }
        }
    });
    return false;
}


