$(function() {

	// http://j.mp/jquery-target-blank
	$('a[href^="http://"]').attr({
		  target: "_blank"
	});
	
	$('a[href$=".pdf"]')
	  .attr({
	    target: "_blank", 
	    title: "Download the pdf file"
	  })
	  .append(' <em>[pdf]</em>');


	// Fancybox
	$("#modal-button a").fancybox({
		'titlePosition'		: 'inside',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	
	$("a.fancybox").fancybox({
		'titleShow'			: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none'
	});
	
	
	// Slideshow Cycle Plugin
	$('#slides').cycle({
		fx: 'fade'
	});


});
