JQuery WordPress Menu Help in Animation
                                                
                                                
                                                
                                                
                                            
                                                                                Hi,
I have below a JScript that supposed to have an animation in the submenu when I hover my mouse in it. But I just can't seem to get it done. Please have a look at this code:
$("ul li").hover(function() {
	if($(this).find('.sub-menu')){
		$('.sub-menu').animate({marginLeft:'-30px'}, 200);
	} else {
		$('.sub-menu').animate({marginLeft:'0px'}, 200);
	}
});
What can I do to solve this problem?
                                            
                                            
                                            
                                        
		
                                                            







