function sendWebComm(){
	$("#btSendWComm").attr("disabled",true);
	$.post("/sendwebcomm.php",{comm:$("#comm_detail").val()},function(data){
		alert("ได้รับข้อความของท่าแล้ว ขอบคุณสำหรับคำแนะนำ");
		$("#comm_detail").val("");
		$("#btSendWComm").attr("disabled",false);
	});
}
$(document).ready(function(){
	$("#news").ScrollNews({
			  inizialize : 'true',
			  size : '120px',
			  timeout : 5000,
			  speed : 'fast',
			  direction : 'up',
			  onmouseover : 'stop'
	});
	/*$("#expand").click(function(){
		if($("#adslist").is(".hold")){
			$("#adslist").animate({"height": "160px"}, "slow");
			$("#adslist").removeClass("hold");
			$.fn.ScrollNews.ContinueScroll({id : "adslist"});
			$("#expand").removeClass("on");
		}else{
			$("#adslist").animate({"height": "320px"}, "slow");
			$("#adslist").addClass("hold");
			$.fn.ScrollNews.StopScroll({id : "adslist"});
			$("#adslist div").css("margin-top",0);
			$("#expand").addClass("on");			
		}
		return(false);
	});*/
});