jQuery(document).ready( function($) {  
    $("#comment_body").hide();
    $("#read_comments").click( function() {
            $("#comment_body").slideToggle("slow"); 
        //    $("#slide_comments").css("visibility","hidden")   
        }
    ); 
    $("#how_it_was").click( function() {
            $("#report").slideToggle("slow"); 
    })
    $("#comment_author_name").blur(function(){  
                if(""==$(this).val())
                    $(this).val("Имя");  
    })
    $("#comment_author_name").focus(function(){
        if("Имя"==$(this).val())
            $(this).val("");                      
   })
    $("#comment_author_email").blur(function(){  
                if(""==$(this).val())
                    $(this).val("Эл. почта");  
    })
    $("#comment_author_email").focus(function(){
        if("Эл. почта"==$(this).val())
            $(this).val("");                      
   })          
})
