function initialize()
{
    jQuery('input#email').val('twój adres e-mail').css({
        color: '#999'
    }).focus(function()
    {
        if (jQuery(this).val() == "twój adres e-mail") 
            jQuery(this).val('').css({
                color: '#111'
            })
    }).blur(function()
    {
        if (jQuery(this).val() == "") 
            jQuery(this).val('twój adres e-mail').css({
                color: '#999'
            })
    });
    jQuery('#newsletter_regulamin').click(function()
    {
        window.open(jQuery(this).attr('href'), 'Regulamin', 'menubar=no, toolbar=no, location=no, scrollbars=yes, resizable=yes, status=no, width=750, height=650')
        return false;
    });
    
    jQuery("#formularz").validate({
        rules: {
            email: {
                required: true,
                email: true,
            },
            zgoda: {
                required: true
            }
        },
        messages: {
            email: {
                email: 'Nieprawidłowy format adresu'
            }
        }
    });
}

jQuery(initialize);

