
	
	$(document).ready(function() {
 
		
	 
		$("#topmenu a").hover(function() {
		    $(this).stop().animate({ marginTop: "-6px" }, 200);
		    $(this).children('#topmenu').stop().animate({ marginTop: "11px"}, 200);
		},function(){
		    $(this).stop().animate({ marginTop: "0px" }, 300);
		    $(this).children('#topmenu').stop().animate({ marginTop: "5px"}, 300);
		});
	});

	$(document).ready(function(){
          $(".fadelink").fadeIn(2000);
          return false;
        }); 
	 

	
