$(document).ready(function() {
		
	$('ul#portfolio-nav li a').click(function() {
		$(this).css('outline','none');
		$('.display').removeClass('display');
		$(this).parent().addClass('display');
		
		var filterVal = $(this).text().toLowerCase().replace(' ','-');
			
		$('ul#portfolio li').each(function() {
			if(!$(this).hasClass(filterVal)) {
				$(this).animate({opacity: 0}, 'slow').addClass('hidden');
					
			}
			else {
				$(this).animate({opacity: 0}, 'slow').animate({opacity: 1}, 'slow').removeClass('hidden');
					
			}
		});	
	});
	
		$('li#web a').click(function (){
			$('div#indicator').animate({top: '26'}, 'slow');
		});
		
		$('li#graphic a').click(function (){
			$('div#indicator').animate({top: '64'}, 'slow');
		});
		
		$('li#reel a').click(function (){
			$('div#indicator').animate({top: '85'}, 'slow');
		});
	$("a.fancybox").fancybox({'centerOnScroll':false, 'imageScale': false});
	
	/*$("img").lazyload({effect : "fadeIn"});*/

});
