             $(function() {
function OnResize() {
   var width = $(window).width();
   if(width < 1070) { $('body').addClass('small'); }
   else { $('body').removeClass('small');
  }
}

$(document).ready(function() {
   OnResize();
   $(window).bind("resize", OnResize);
});

            $(".menu ul li a").live('click', function (e) {
            $(e.target).closest("li").addClass("actual").siblings('.actual').removeClass('actual');
        });
            $('table.homelisting tbody tr:odd, table.fichetorrent tbody tr:odd').addClass('odd');
            $('table.homelisting tbody tr:even, table.fichetorrent tbody tr:even').addClass('even');
            $('table.homelisting tbody tr').hover(function() { $(this).addClass('hover'); }, function() { $(this).removeClass('hover'); });
            $( '#leftAd' ).scrollFollow();
            $(".smartform input:text, .smartform  input:password, .smartform select, .smartform input:file, .smartform textarea").bind("focus blur",function(f) { var t = f.type == "focus" ? "add" : "remove"; $(this).prevAll("label:first").andSelf()[t+"Class"]("focus"); });
    });
