$(document).ready(function()
{
    //гармошко
    $(".accordion p").hide();
    $(".accordion div.ac_div").click(function(){
        $(this).next("p").slideToggle("fast")
        .siblings("p:visible").slideUp("fast");
        //$(this).toggleClass("active");
        //$(this).siblings("div").removeClass("active");
    });

    //карусель с отзывами
    $(function() {
        $(".thanks_cr").jCarouselLite({
            btnNext: ".thanks_next",
            btnPrev: ".thanks_prev",
            circular: true,
            visible: 1,
            scroll: 1,
            auto: 25000
        });
    });

    $(".thanks_cr").css("visibility", "visible");

    //нажимаем на левую кнопку карусели
    $(".thanks_prev").mousedown(function(){
        $(this).css("margin", "0px 5px 0px -5px")
    });

    //отпускаем левую кнопку карусели
    $(".thanks_prev").mouseup(function(){
        $(this).css("margin", "0px")
    });

    //нажимаем на правую кнопку карусели
    $(".thanks_next").mousedown(function(){
        $(this).css("margin", "0px -5px 0px 5px")
    });

    //отпускаем правую кнопку карусели
    $(".thanks_next").mouseup(function(){
        $(this).css("margin", "0px")
    });

    //нажимаем на кнопку отправки формы
    $("#image_button").mousedown(function(){
        $(this).css("margin", "0px -5px 0px 5px")
    });

    //отпускаем кнопку отправки формы
    $("#image_button").mouseup(function(){
        $(this).css("margin", "0px")
    });

    /*jQuery.each(jQuery.browser, function(i, val) {
      $("<div>" + i + " : <span>" + val + "</span>")
                .appendTo(document.body);
    });*/

    //для оперы
    if ($.browser.opera) {
        $("#form_dropdown_new_field_49022").css("width", "224px")
        $(".param_field").css("padding-bottom", "10px")
        $("#submit").css("padding-top", "5px")
    }

    //для мазилы
    if ($.browser.mozilla) {
        $(".param_field").css("padding-bottom", "10px")
        $("#submit").css("padding-top", "3px")
    }

    //для осла
    if ($.browser.msie) {
        $("#form_dropdown_new_field_49022").css("width", "224px")
        $(".param_field").css("padding-bottom", "10px")
        $("#submit").css("padding-top", "5px")
    }
});
