Реализовывал кто то из участников форума? JavaScript, AJAX
Где-нибудь между тэгами <head></head> файла \templates\ваш_шаблон\main.tpl.php вставьте это:
<style>body {display: none}</style> <script type="text/javascript"> $(document).ready(function() { $("body").fadeIn(2000); $("a").click(function(event){ event.preventDefault(); linkLocation = this.href; $("body").fadeOut(1000, redirectPage); }); function redirectPage() { window.location = linkLocation; } }); </script>