$(document).ready( function(){
	/* ANIMAÇÃO MENU */
	$("#ctn-wrapper .ctn-menu ul li").hover(
		function(){
			$(this).find(".lst-dropdown").fadeIn(100);
		},
		function (){
			$(this).find(".lst-dropdown").fadeOut(100);
		}
	);
});
