// JavaScript Document
$(function() { 
            $("a.scrollv").click(function() { 
                var targetId = $(this).attr("href"); 
                $("body").animate({ opacity: 0 }, 500, function() { 
                    $("html,body").animate({ scrollTop: $(targetId).offset().top }, 1, function() { 
                        $("body").animate({ opacity: 1 }, 500); 
                    }); 
                }); 
                return false; 
            }); 
        }); 
