var $j = jQuery.noConflict();
$j(function(){
$j(".people_entry").hover(
	function () {
		$j(this).find(".title").show();
		$j(this).find(".name").show();
	},
	function () {
		$j(this).find(".title").hide();
		$j(this).find(".name").hide();
	}
	);
$j(".people_entry img").hover(
 function()
 {
  this.src = this.src.replace("_off","-color");
 },
 function()
 {
  this.src = this.src.replace("-color","_off");
 }
);
});
