/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var tb_pathToImage = "images/loadingAnimation.gif";

function sendApplication() {

    if( $('#event-form').valid() ) {
        $.ajax({
            url: "/applications/send/",
            global: false,
            type: "POST",
            data: ({event_id: $('#event_id').val(), first_name : $('#first-name').val(), last_name: $('#last-name').val(), street: $('#street').val(), city: $('#city').val(), post_code: $('#post_code').val(), phone: $('#phone').val(), email: $('#email').val(), birth_date: $('#birth-date').val(), discipline: $('#discipline').val(), level: $('#level').val() }),
            dataType: "html",
            success: function( data ){
                $('#reg-form').html( data );
            }
        });
    }

}

$(document).ready(function(){
  $('a.fancy').fancybox();
});

