$(document).ready(function(){
    $('.beautytip').bt({width:'300px', animate:true, fill:"rgb(245,245,245)", cssStyles:{color:"rgb(105,105,105)",'text-align':'center'}, positions: ['bottom']});
    $('.gallerytip, .smalltip').bt({width:'200px', animate:true, fill:"rgb(245,245,245)", cssStyles:{color:"rgb(105,105,105)",'text-align':'center'}, positions: ['bottom']});
    $("a[rel^='prettyPhoto']").prettyPhoto({theme: 'facebook', allowresize: true});
    $("a[rel^='prettyPopin']").prettyPopin();
    $("a[rel^='fancyBox']").fancybox({overlayOpacity: 0.7});

    $(".answersblockruler").click(function(){
        $($(this).attr('href')).slideToggle();
        $('.updown', $(this)).toggleClass('lll').toggleClass('rrr');
        return false;
    });
    $("#questionformcontainer #questionform").live('submit',function(){
        var form = $(this);
        var div = form.parent();
        form.fadeOut(300);
        div.addClass('waiting');
        $.ajax({
            type: "POST",
            async: true,
            dataType: 'html',
            cache: false,
            url: form.attr('action'),
            data: form.serialize(),
            success: function(msg){
                div.html(msg);
            },
            error: function(XMLHttpRequest, textStatus, errorThrown){
                alert('Ошибка передачи данных!');
                form.fadeIn(300);
            },
            complete: function(){
                div.removeClass('waiting');
            }
        });
        
        return false;
    });
});
