    $(document).ready(function (){
        $('#button a').click(function(){
            var integer = $(this).attr('rel');
            $('#galleryshow .cover').animate({top:-700*(parseInt(integer)-1)}) 
            $('#button a').each(function(){
            $(this).removeClass('active');
                if($(this).hasClass('button'+integer)){
                    $(this).addClass('active')}
            });
        });	
    });
