/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

var zoomOnHover = function ($e) {
    $e.live('mouseenter', function(){
        $(this).animate({'margin-top': '-=20px'}, 500);
    });
    $e.live('mouseleave', function(){
        $(this).animate({'margin-top': '+=20px'}, 500);
    });
}

var Validator = new function() {
    return {
        email: function ($email) {
            var rx = /^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*\.(([0-9]{1,3})|([a-zA-Z]{2,6}))$/;
            return rx.test($email);
        }
    } 
}();
