
$(document).ready(function(){ 
	
	$("div#download-cv li a").css({"opacity" : 0}).hover(function(){
		$(this).stop().animate({"opacity" : 1}, 400); //Change fade-in speed
	
		}, function(){
		$(this).stop().animate({"opacity" : 0}, 400);//Change fade-out speed
	
	});
	
});

		$(document).ready(function() {
			$("a.img-popout").fancybox({
				'overlayShow'	: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});
		});
		
		$("a[rel=img-group]").fancybox({

				'overlayShow'		: false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {

					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';

				}

			});

