$(function(){
    $('#coungratulations-tabs > ul.links a').click(function(){
        $this = $(this);

        if ($this.hasClass('active'))
            return false;

        $tabs = $('.tabs', $this.parents('div.tabs-container'));
        $('.tab', $tabs).hide();
        $('.tab.'+$this.attr('rel'), $tabs).show();

        $('li', $this.parents('ul.links')).removeClass('active');
        $this.parent().addClass('active');

        if ($this.attr('rel') == 'tab-1') {
            $('#receiver_congratulation').val($('.tab.'+$this.attr('rel'), $tabs).html().replace('<br>', "\r\n", 'g'));
        } else {
            $('#receiver_congratulation').val('');
        }

        return false;
    });
    $('#coungratulations-tabs ul.links li:first-child a').trigger('click');

    $('.form-item-button #button').click(function(){
        $('.form-item-button #button').colorbox({ href:"/postcard/preview?"+$('#formo').serialize() });
    });
});