
$(function() {
    
    // Menu selection scroll
    $('#menu a').click(function() {
        $('html, body').stop().animate({scrollTop: $($(this).attr('href')).offset().top - 130}, 'slow');
        return false;
    });
    
    // Email message toggle
    $('#email').attr(
        'value', 'your email'
    ).focus(function() {
        if (this.value == 'your email') {
            this.value = '';
        }
    }).blur(function() {
        if (this.value == '') {
            this.value = 'your email';
        }
    });
    
});
