jQuery(document).ready(function(){ 

	jQuery(".equalize").equalHeights();
	jQuery(".content-box").equalHeights();
	
	jQuery(".staff li").hover(function(){
		$(".cover", this).fadeTo("normal", 0.2);
	}, function() {
		$(".cover", this).fadeTo("normal", 1.0);
	});
	
	jQuery("tr:odd").css("background-color","#DFF3FF");
	
});
