$(function() {

	
	// http://j.mp/jquery-target-blank
	$('a[href^="http://"], a[rel="external"]').each(function(){
		$(this).attr({
			target: "_blank",
			title: this.href + " (opens in a new window)"
		});
	});

	$('a[href$=".pdf"]').attr({
		target: "_blank",
		title: "PDF File"
	});

	$('#slides').cycle({
	    prev:   '#sn-prev', 
	    next:   '#sn-next'
	});
	
});
























