$(document).ready(function() {
	
	$('a.lightbox').lightBox(); // Select all links with lightbox class
	
	$(".table1 tbody tr:even").addClass("alt");
	
	$("a.doctype").each(function(){
		if ($(this).attr("href").indexOf(".pdf") !== -1) {$(this).after(" <img src='img/icon_pdf.gif' align='absmiddle' />"); $(this).attr("target","_blank");};
		if ($(this).attr("href").indexOf(".doc") !== -1) {$(this).after(" <img src='img/icon_doc.gif' align='absmiddle' />"); $(this).attr("target","_blank");};
		if ($(this).attr("href").indexOf(".zip") !== -1) {$(this).after(" <img src='img/icon_zip.gif' align='absmiddle' />"); $(this).attr("target","_blank");};
		if ($(this).attr("href").indexOf(".ppt") !== -1) {$(this).after(" <img src='img/icon_ppt.gif' align='absmiddle' />"); $(this).attr("target","_blank");};
	});
	
	$("td a:not(.doctype)").each(function(){
		if ($(this).attr("href").indexOf(".pdf") !== -1) {$(this).after(" <img src='img/icon_pdf.gif' align='absmiddle' />"); $(this).attr("target","_blank");};
		if ($(this).attr("href").indexOf(".doc") !== -1) {$(this).after(" <img src='img/icon_doc.gif' align='absmiddle' />"); $(this).attr("target","_blank");};
		if ($(this).attr("href").indexOf(".zip") !== -1) {$(this).after(" <img src='img/icon_zip.gif' align='absmiddle' />"); $(this).attr("target","_blank");};
		if ($(this).attr("href").indexOf(".ppt") !== -1) {$(this).after(" <img src='img/icon_ppt.gif' align='absmiddle' />"); $(this).attr("target","_blank");};
	});
});