$(document).ready(function(){
	
	$('#portfolio a').hover(
		function(){
			var active = $(this).get(0);
			$('#portfolio a').each(function(){
				if ($(this).get(0) === active){
					$(this).children('img').stop(true,false).animate({opacity:1}, 500);
					if ($(this).children('blockquote').is(":hidden")){
						$(this).children('blockquote').slideToggle(300);
					}
				} else {
					$(this).children('img').stop(true,false).animate({opacity:.5}, 500);
					$(this).children('blockquote').slideUp(300);
				}
			});
		}, function(){
			var active = $(this).get(0);
			$('#portfolio a').each(function(){
				$(this).children('img').stop(true,false).animate({opacity:1}, 500);
			});
			if ($(this).get(0) === active){
				if ($(this).children('blockquote').is(":visible")){
					$(this).children('blockquote').slideToggle(300);
				}
			}
		}
	);
	
});
