$(document).ready(function(){

	$("#sealrankol li").mouseover(function(event){
	if(this == event.target){
		$(this).css("background-color", "#e8e8e8");
	}});
	$("#sealrankol li").mouseout(function(event){
		if(this == event.target){
		$(this).css("background-color", "#ffffff");
	}}); 
})