$(document).ready(function() {
    $(".wwd-home #content li div").hover(
      function () {
        $(this).children("p").stop(true,true).show("slow");
      }
	  , 
      function () {
        $(this).children("p").stop(true,true).hide("slow");
      }
    );
	
	$('.clients').hover(function(){
		$('> ul', this).stop(true, true).delay(500).slideDown('fast');
	},function(){
		$('> ul', this).stop(true, true).delay(500).slideUp('fast');
	});
	$('#clientList li .popup').hide();
	$('#clientList li').hover(function(){
		$('.popup',this).stop(true, true).delay(500).fadeIn();
	},function(){
		$('.popup',this).stop(true, true).fadeOut();
	});
});	
