$(function() {
	
	
	// http://j.mp/jquery-target-blank
	$('a[href^="http://"], a[rel="external"]').each(function(){
		$(this).attr({
			target: "_blank",
			title: this.title + " (opens in a new window)"
		});
	});

	$('a[href$=".pdf"]').attr({
		target: "_blank",
		title: this.title + " (PDF file)"
	});
	

	// Nivo Slideshow 
    $('#slideshow').nivoSlider({
		controlNav:false,
		captionOpacity:0,
        directionNav:false, // Next & Prev navigation
        directionNavHide:false, // Only show on hover
	});


	//  Fancybox Photos and Maps
	$("a.photo").fancybox({
		'titleShow' : false
	});	

	$("a[rel=gallery]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
	});
	
	$("#in-map a").fancybox({
		'width'			: '75%',
		'height'		: '75%',
        'autoScale'     : false,
		'titleShow'     : false,
        'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'type'			: 'iframe'
	});

	
});




















