$(document).ready(function() {
	$('.slideshow').cycle({
		 	fx: 'fade',
			pager: '#nav',
			pagerEvent: 'mouseover',
			pauseOnPagerHover: 'true',
			speed: 800,
			timeout: 4000,
			before: texto 
	});
			function texto() { 
				$('#output').html('<h3>' + this.alt + '</h3>'); 
			}
	 
	 $('#social_links > div').fadeTo("slow", 0.50);
	 $('#social_links > div').hover(
				function(){
					var $social = $(this);
					$social.stop().fadeTo("fast", 1.00);
				},
				function(){
					var $social = $(this);
					$social.stop().fadeTo("slow", 0.50);
				}
			);
	
	$('a[rel=external]').attr('target', '_blank');
	
		
});

