$(document).ready(function(){
			
	$(".pps a").mouseover(function(){		
		$(this).parent(".pps").css("background-color","#eee");
	});
	$(".pps a").mouseout(function(){		
		$(this).parent(".pps").css("background-color","#ffffff");		
	});
			
			
	$(".pps a").mouseover(function(){		
		$(this).parent(".pps").css("background-color","#efefef");		
	});
	$(".pps a").mouseout(function(){		
		$(this).parent(".pps").css("background-color","#ffffff");		
	});
			
});