

$(document).ready(function(){
						   
	$("tr:contains('Document')").addClass("document-pack");
	$("tr:contains('Video')").addClass("video");

	$("#attachments td a[@href$='docx']").addClass("word-document"); // note @ has deprechiated
	$("#attachments td a[@href$='doc']").addClass("word-document");
	$("#attachments td a[@href$='pdf']").addClass("pdf-document");
	

});
