var slideTimeOut = 4000;
var slideTimeFade = 3000;
$(document).ready(function() {
	
	// opens pdf in new window
	$("a[href*=.pdf]").click(function(){
		window.open(this.href);
		return false;
	});
	
});