$(document).ready(function() {
   // put all your jQuery goodness in here.
 	$('.dropdown').each(function () {
       $(this).parent().eq(0).hover(function () {
           $('.dropdown:eq(0)', this).slideDown(200);
       }, function () {
           $('.dropdown:eq(0)', this).fadeOut(200);
       });
   });
   $('.dropdown').parent().addClass('hassub');
   $('.mainnav li:last').css({'background':'none'});
 });
