$(document).ready(function() {

        /*SHOW LOGIN*/
        $(function() {
                $('.loginlink').click(function() {
                        $('.login').fadeIn('normal');
                        return false;
                });
        });

        /*HIDE LOGIN when clicking outside the DIV*/
        $(document).click(function(event) {
                if ( $(event.target).closest('.login').get(0) == null )
                { $('.login').fadeOut('fast'); }
        });

        /*SCROLL Settings*/
        var $thetarget = $('.content');
        $('.logolink').click(function(){
        $thetarget.stop().scrollTo( '.quepage', 800 );
        return false;
        });
        $('.quelink').click(function(){
        $thetarget.stop().scrollTo( '.quepage', 800 );
        return false;
        });
        $('.comolink').click(function(){
        $thetarget.stop().scrollTo( '.comopage', 800 );
        return false;
        });
        $('.dondelink').click(function(){
        $thetarget.stop().scrollTo( '.dondepage', 800 );
        return false;
        });
        $('.beneficioslink').click(function(){
        $thetarget.stop().scrollTo( '.beneficiospage', 800 );
        return false;
        });
        $('.asociadoslink').click(function(){
        $thetarget.stop().scrollTo( '.asociadospage', 800 );
        return false;
        });


});
