//Custom jQuery alterations by MMK
$(document).ready(function(){
		// matching pdf links
		$("a[href$='.pdf']").addClass("pdffile");
		// matching odd rows in html tables to draw alternate colors
		$("table tr:odd").addClass("odd");
		// making links to outside websites open in new window to avoid using invalid "target" attribute
		$("a[class='link-blank']").click(function(){window.open($(this).attr('href'),'blank');return false;});
		//selecting lightbox images
		$('a[@class*=lightbox]').lightBox();
	}
);
