// Title Bar
$(document).ready(function() {
	$("tr").filter(".ms-WPHeader").each(function(index, domEle){

			var text = $(domEle).text();
			text= "#"+ $.trim(text) +"#";
			
			if(text.indexOf("แก้ไข",0) == -1)
			{
			
				var type = 'Member';	
			
				if(text.indexOf("ประวัติ ส.ท.ท.",0) > -1 || text.indexOf("วัตถุประสงค์/พันธกิจ",0) > -1 ||
					text.indexOf("ข้อบังคับและระเบียบ ส.ท.ท.",0) > -1 || text.indexOf("โครงสร้างบริหาร",0) > -1 )
					type = 'Manager';	
					
				//else if(text.indexOf("ข่าวประชาสัมพันธ์",0) > -1 || text.indexOf("สัมนาและอบรม",0) > -1 ||
					//text.indexOf("รายงานการประชุม",0) > -1 || text.indexOf("ภาพกิจกรรม ส.ท.ท.",0) > -1 ||
					//text.indexOf("ปฏิทินกิจกรรม ส.ท.ท.",0) > -1 || text.indexOf("หนังสือส่วนราชการ",0) > -1 ||
					//text.indexOf("ติดต่อส.ท.ท.",0) > -1 )  
					//type = 'News';	

				//else if(text.indexOf("โครงการเด่น",0) > -1 || text.indexOf("แนะนำสมาชิก",0) > -1 )				
					type = 'Member';
					
				//else if(text.indexOf("นิตยาสาร",0) > -1 || text.indexOf("กองบรรณาธิการ",0) > -1 ||
					//text.indexOf("บทความจากนิตยาสาร",0) > -1 || text.indexOf("ใบสมัครนิตยาสาร",0) > -1 )
					//type = 'Mag';	

				//else if(text.indexOf("รวมลิงค์",0) > -1 || text.indexOf("สาระน่ารู้",0) > -1 ||
					//text.indexOf("กระดานสนทนา",0) > -1 || text.indexOf("Site Map",0) > -1 ||
					//text.indexOf("Download",0) > -1 )
					//type = 'Other';	


							
				$(domEle).before("<tr class='roundmiddle-"+type+"'><td width=100%> <TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH='100%' HEIGHT='34'><TR><TD class='roundleft-"+type+"'></TD><TD>"+$(domEle).children().html()+"</TD><TD class='roundright-"+type+"'></TD></TR></TABLE></td></tr>");
				$(domEle).toggle();
			}

	});

});