$(document).ready(function() {
	$('ul#filter a').click(function() {
		$(this).css('outline','none');
		$('ul#filter .current').removeClass('current');
		$(this).parent().addClass('current');
		
		var filterVal = $(this).text().toLowerCase().replace(' ','-');
				
		if(filterVal == 'all') {
			$('ul#portfolio_right li.hidden').animate({opacity: 'show', height: 'show'}, 'normal').removeClass('hidden');
		} else {
			
			$('ul#portfolio_right li').each(function() {
				if(!$(this).hasClass(filterVal)) {
					$(this).animate({opacity: 'hide', height: 'hide'}, 'normal').addClass('hidden'); 
				} else {
					$(this).animate({opacity: 'show', height: 'show'}, 'normal').removeClass('hidden'); 
				}
			});
		}
		
		return false;
	});
});