$(document).ready(function() {
    $('ul.dropdown>li').each(function() {
        $(this).mouseover(function() {
            $(this).addClass('over');
        });
        $(this).mouseout(function() {
            $(this).removeClass('over');
        });
    });
    $("div.subcat:even").css("clear", "right");
});
