// JavaScript Document
        $(document).ready(function() {
			$(".top_title").each(function() {  
                var inText = $(this).text();  
                if (inText.length > 16) {  
                    $(this).text(inText.substr(0, 16) + "...")  
                }  
            }); 
            $(".shortword").each(function() {  
                var inText = $(this).text();  
                if (inText.length > 10) {  
                    $(this).text(inText.substr(0, 10) + "...")  
                }  
            });  
			$(".shortword1").each(function() {  
                var inText = $(this).text();  
                if (inText.length > 38) {  
                    $(this).text(inText.substr(0, 38) + "...")  
                }  
            }); 
			$(".hot_tit").each(function() {  
                var inText = $(this).text();  
                if (inText.length > 26) {  
                    $(this).text(inText.substr(0, 26) + "...")  
                }  
            });
			$(".colunm_tit").each(function() {  
                var inText = $(this).text();  
                if (inText.length > 23) {  
                    $(this).text(inText.substr(0, 23) + "...")  
                }  
            });
			$(".colunm_tit1").each(function() {  
                var inText = $(this).text();  
                if (inText.length > 17) {  
                    $(this).text(inText.substr(0, 17) + "...")  
                }  
            });
			$(".inform_tit1").each(function() {  
                var inText = $(this).text();  
                if (inText.length > 13) {  
                    $(this).text(inText.substr(0, 13) + "...")  
                }  
            });
        });  
