$(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'
	});
	
	
	//  Slideshow Cycle Plugin
	$('#slides').cycle({ 
	    fx:'fade',
		prev: '#sn-prev',
		next: '#sn-next',
		timeout: 6000
	 });
	
	// Fancybox
	$("a.fancybox").fancybox();
	
	
});
























