$(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");
        }
    })
})
$(function(){
    $(".shezhi .big").click(function()
    {
        $('#txt_con').css('font-size','14px');
    });
    $(".shezhi .small").click(function()
    {
        $('#txt_con').css('font-size','12px');
    });
});
