 charset="utf-8";
 
 $(document).ready(function() {

				//filetypes
				//Apply CSS class to all A links that end in .pdf
				$("a[href$='.pdf']").addClass("pdf_ico");
				
				//Apply CSS class to all A links that end in .doc
				$("a[href$='.doc']").addClass("doc_ico");
				
				//Apply CSS class to all A links that end in .xls
				$("a[href$='.xls']").addClass("xls_ico");
				
				//Apply CSS class to all A links that end in .ppt
				$("a[href$='.ppt']").addClass("ppt_ico");
				
				//Apply CSS class to all A links that start with mailto:
				$("a[href^='mailto:']").addClass("mail_ico");



				
				
			
				 
				 //tables
					$("table tr").mouseover(function() {$(this).addClass("over");}).mouseout(function() {$(this).removeClass("over");});
					$("table tr:even").addClass("even");

 				
				
				
				
 });
 
 





