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

    /* lightbox */
    $(function() {
	$('a[rel=lightbox]').lightBox();
    });

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

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

