$(function(){
	$('.nav_js li').hover(function(){
		$(this).children('ul').stop(true,true).show();
	},function(){
		$(this).children('ul').stop(true,true).hide();
	});
});
$(document).ready(function()
{ 
    
    $(".third-menu").each(function()
    {
        if($(this).html()!="")
        {
            $(this).parent().children("a").addClass("arrow");
        }
    });  
});

