$(document).ready(function(){
	
	$(".pf-item:odd").css('margin', '0 0 30px 0'); // Portfolio
				
	$('.photos li').click(function(){
		$('.photos li').removeClass('active');
		$('.photos li').not(this).css('opacity', 0.5);
		$(this).addClass('active');
		bloc = $(this).find('img').attr('alt');
		$('.profile').hide();
		$('.profiles .'+bloc).show();
		
		$(this).find('.name').hide();
	});
	$('.photos li:not(.active)').live('mouseenter', function(){
		$(this).css('opacity', 1);
		$(this).find('.name').show();
	}).live('mouseleave', function(){
		$(this).css('opacity', 0.5);
		$(this).find('.name').hide();
	});	
});
