$(document).ready(function(){
	 		$('#main dl').hover(
	 		function(){
				$(this).find('.drop-down').show(); 		
	 		},function(){
	 			$(this).find('.drop-down').hide().delay(800);
	 		});
	 		
	 		
	 		$(function () {
  
				  var msie6 = $.browser == 'msie' && $.browser.version < 7;
				  
				  if (!msie6) {
				    var top = $('#more-links').offset().top - parseFloat($('#more-links').css('margin-top').replace(/auto/, 0));
				    $(window).scroll(function (event) {
				      // what the y position of the scroll is
				      var y = $(this).scrollTop();
				      
				      // whether that's below the form
				      if (y >= top) {
				        // if so, ad the fixed class
				        $('#more-links').addClass('fixed');
				      } else {
				        // otherwise remove it
				        $('#more-links').removeClass('fixed');
				      }
				    });
				  } 		
			 		
			 });
	 
	 });
