$(document).ready(function(){

	// Dropdown
	$("#nav li.top").hover(
      function () {
        $(this).find('ul').fadeIn('fast');
      },
      function () {
        $(this).find('ul').fadeOut('fast');
      }
    );

});
