// jQuery runOnLoad Functions
runOnLoad(function(){
	$(".col_justify").vjustify();
	// open pdf files in new window
	$("a[@href$=pdf]").each(function(){
			$(this).attr('target', '_blank');
	});
});

