// JavaScript Document

 $(document).ready(function() {

    $("#open-form").click(function(){
               
       // var detail = $(this).attr("detail");
       // detail="#"+detail;
        //$(this).addClass("gray");
        if($("#subscribe").attr("open")=="false"){
             $("#subscribe").slideDown();   
             $("#subscribe").attr("open", "true");
             $(this).text("свернуть форму"); 
        }else{
            $("#subscribe").slideUp();   
            $("#subscribe").attr("open", "false");
            $(this).text("развернуть форму"); 
        } 
                       
    }); 
    
    
   document.getElementsByName("SIMPLE_FORM_1").action="/press/?FORM=1";   
 });
 

