$(document).ready(function(){
	$("div.nav").hover(
		function(){
		  $("ul#nav").fadeIn('slow');
		},
		function(){
		  $("ul#nav").fadeOut('slow');
		}
	);
	$("li.nav").hover(
		function(){
		  $(this).children('li ul').fadeIn('slow');
		},
		function(){
		  $(this).children('li ul').fadeOut('slow');
		}
	);

	$("div.rightsb_dd").hover(
		function(){
		  $(this).children('ul').fadeIn('slow');
		},
		function(){
		  $(this).children('ul').fadeOut('slow');
		}
	);		
});
