jQuery.noConflict();
(function($) { 
  $(function() {
	$('#nav .navli').hover(function(){
		var e = $(this).find('.pdd');
		if(e[0]){
			e.stop().show();
		}
	}, function(){
		var e = $(this).find('.pdd');
		if(e[0]){
			e.stop().hide();
		}
	});
	$('#nav .subli').hover(function(){
		var e = $(this).find('dd');
		if(e[0]){
			e.show(300);
		}
	}, function(){
		var e = $(this).find('dd');
		if(e[0]){
			e.hide();
		}
	});
	$('#returntop').click(function(){
		$('html,body').animate({
			scrollTop: 0
		},600);	
	});
  });
})(jQuery);
