 limba = 'ro';

$(document).ready(function() {
    
     $search_box = $("#signupInput");
         
    // If the user clicks the input box and the text is "search here!",
    //    set it to blank
    $search_box.click(function() {
        if( $search_box.attr("value") == "  Newsletter Timisoreni" ) {

            // Set it to an empty string
            $search_box.attr("value", "");
        }
    });
    
    $email_form = $("#nl");
    $email_form.submit(function() {
        var email = jQuery("#signupInput").val();
        var reg = /^[A-Za-z0-9](([_\.\-]?[a-zA-Z0-9]+)*)@([A-Za-z0-9]+)(([\.\-]?[a-zA-Z0-9]+)*)\.([A-Za-z]{2,4})$/;
        if(reg.test(email) == false) {
            alert('Va rugam verificati adresa de email!');
            return false;
        }
    });
});
