$(document).ready(function() {
	$("a[href$=.pdf]").click(function(){
		window.open(this.href,'pdfwin','resizable,scrollbars');
		return false;
	});

	$("a.advertisement").click(function(){
		window.open(this.href);
		return false;
	});

	$("a[href*=#sect]").each(function(){
		this.href = this.href.replace(/#sect/, "&s=");
	});
});
