$(function(){
	$('.ifixpng').ifixpng();
	
	$('a.lightbox').each(function(){
		 $(this).lightBox();
	});
	
	$('a.bb-about').click(function(){
		//$(this).find('img').hide().parent().find('.select').show();
		$('.b-content h2 img').css('display', 'inline');
		if($('.b-content').css('display') == 'none'){
			$('.b-content').fadeOut().removeClass('b-content_screenshots').removeClass('b-content_arts').addClass('b-content_about').fadeIn();
		}else{
			$('.b-content').removeClass('b-content_screenshots').removeClass('b-content_arts').addClass('b-content_about').fadeIn();
		}
		return false;
	});
	$('a.bb-screenshots').click(function(){
		//$(this).find('img').hide().parent().find('.select').show();
		$('.b-content h2 img').css('display', 'inline');
		if($('.b-content').css('display') == 'none'){
			$('.b-content').fadeOut().removeClass('b-content_arts').removeClass('b-content_about').addClass('b-content_screenshots').fadeIn();
		}else{
			$('.b-content').removeClass('b-content_arts').removeClass('b-content_about').addClass('b-content_screenshots').fadeIn();
		}
		return false;
	});
	$('a.bb-art').click(function(){
		//$(this).find('img').hide().parent().find('.select').show();
		$('.b-content h2 img').css('display', 'inline');
		if($('.b-content').css('display') == 'none'){
			$('.b-content').fadeOut().removeClass('b-content_screenshots').removeClass('b-content_about').addClass('b-content_arts').fadeIn();
		}else{
			$('.b-content').removeClass('b-content_screenshots').removeClass('b-content_about').addClass('b-content_arts').fadeIn();
		}
		return false;
	});
	
	$('a.close').click(function(){
		$('.b-content').fadeOut();
		$('.b-content h2 img').css('display', 'none');
		return false;
	});
	
});
