$("#footer ul li:last").addClass("first");
$("#footer ul li:first").addClass("last");
$("#header ul.dropdown > li:first").addClass("first");
$("#header ul.dropdown > li:last-child").addClass("last");

$(".box:odd").css("margin-left", "30px");

$(document).ready(function(){
    $('ul.dropdown > li').hover(
      function () {
        $('a', this).addClass('slide-down');
        $('ul', this).slideDown(100);
      }, 
      function () {
        obj = this;
        $('ul', this).slideUp(100, function(){ $('a', obj).removeClass('slide-down'); });
		$('a', obj).removeClass('slide-down');
      }
    );

});
