$(document).ready(function() {
   $(".topmenu > li").hover(
      function () {
        $(this).children('ul').show();
      },
      function () {
        $(this).children('ul').hide();
      }
    );
    $(".auto > li").hover(
      function () {
        $(this).children('ul').show();
      },
      function () {
        $(this).children('ul').hide();
      }
    );
   $('#textScroll div:nth-child(4n)').after('<div class="clear"></div>');
   $("a.zoom").fancybox();
});
