$(document).ready(function() {

	$('.offshore ul, .wr ul').hide();

	
	$('.offshore, .wr').mouseenter(function(){
	  $(this).children('ul').animate({ opacity: "show" }, "fast");
	});
	  
	$('.offshore, .wr').mouseleave(function(){
	  $(this).children('ul').animate({ opacity: "hide" }, "fast");
	  
	});
	



});


