/*$(document).ready(function(){
	var strLocal =window.location.pathname; 
	var start = strLocal.lastIndexOf("/");
	var end = strLocal.lastIndexOf(".html");
	if (start >0)
	{
		strLocal=strLocal.substring(start+1, end);
	}

	if(strLocal){
		$.get('/e/extend/Related/pub_related_news.php?id='+strLocal, function(data) {
			$('#related_result').html(data);
		});
	}

})*/
