//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[rel='link-blank']").click(function(){window.open($(this).attr('href'),'blank');return false;});
	//	$('a:has(img)').lightbox();
	}
);
