$(document).ready(function(){
    
    /* nowe okno */
    $('a[rel=new-window]').click(function(){
            window.open(this.href);
            return false;
        });

     /* pola formularza */
     $("#content-r input[type=text], #content-r textarea").focus(function(){
        $(this).addClass("active");
     });

     $("#content-r input[type=text], #content-r textarea").blur(function(){
        $(this).removeClass("active");
     });
});

