var $j = jQuery.noConflict();
jQuery.fn.fadeToggle = function(speed, easing, callback) { 
   return this.animate({opacity: 'toggle'}, speed, easing, callback); 
}; 

$j(function() {
	
	
	



	$j('a.show_all').click(function() {
		$j("*").fadeIn("slow");
		
		$j('.filters > a').css({
		'color':'white'
		});
		
		$j(this).css({
		'color':'rgb(170,238,133)'
		});
		
		
		return false;
	});

	$j('a.principal_filter').click(function() {
		$j("*").show();
		$j(".box_title:not(.principals)").fadeToggle("slow");
		$j(".information:not(.principals)").fadeToggle("slow");
		
		$j('.filters > a').css({
		'color':'white'
		});
		
		$j(this).css({
		'color':'rgb(170,238,133)'
		});
		
		return false;
	});
	
	
	$j('a.architect_filter').click(function() {
		$j("*").show();
		$j(".box_title:not(.architects)").fadeToggle("slow");
		$j(".information:not(.architects)").fadeToggle("slow");
		$j('.filters > a').css({
		'color':'white'
		});
		
		$j(this).css({
		'color':'rgb(170,238,133)'
		});
		
		return false;
	});
	
	$j('a.cm_filter').click(function() {
		$j("*").show();
		$j(".box_title:not(.cm)").fadeToggle("slow");
		$j(".information:not(.cm)").fadeToggle("slow");
		
		$j('.filters > a').css({
		'color':'white'
		});
		
		$j(this).css({
		'color':'rgb(170,238,133)'
		});
		
		return false;
	});
	
	$j('a.intern_filter').click(function() {
		$j("*").show();
		$j(".box_title:not(.interns)").fadeToggle("slow");
		$j(".information:not(.interns)").fadeToggle("slow");
		
		$j('.filters > a').css({
		'color':'white'
		});
		
		$j(this).css({
		'color':'rgb(170,238,133)'
		});
		
		
		return false;
	});
	
});
-->