$(function() {
    $(".menu ul").lavaLamp({ fx: "easeinout", speed: 200 });
	
    $('.lmenu a').hover(function(e){
		    $(this).parent().find('.tip').show();
        },function(e){
            $(this).parent().find('.tip').hide();
        });
});
